summaryrefslogtreecommitdiff
path: root/src/core.h
diff options
context:
space:
mode:
authoromnisci3nce <17525998+omnisci3nce@users.noreply.github.com>2024-04-04 20:25:40 +1100
committeromnisci3nce <17525998+omnisci3nce@users.noreply.github.com>2024-04-04 20:25:40 +1100
commitbb889d2edc1cc72b939edf47a2e03b7569c1a722 (patch)
tree59b7744d44bda7768ba908224a18d6a5046b186f /src/core.h
parent1047d08258f6c56f5fa8067cc65694b1b5798602 (diff)
parent6a95b047998c0e0dcfdf60d17cf2cd0bd0bfee12 (diff)
Merge branch 'cel-60-scaffold-vulkan' into cel-67-load-animation-data-from-gltf
Diffstat (limited to 'src/core.h')
-rw-r--r--src/core.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core.h b/src/core.h
index 1b3e28b..05e3aed 100644
--- a/src/core.h
+++ b/src/core.h
@@ -8,6 +8,7 @@
#include "threadpool.h"
typedef struct core {
+ // TODO: Add application name
renderer renderer;
threadpool threadpool;
input_state input;
@@ -19,5 +20,6 @@ typedef struct core {
// --- Lifecycle
core* core_bringup();
void core_shutdown(core* core);
+bool should_exit(core* core);
void core_input_update(core* core);