summaryrefslogtreecommitdiff
path: root/src/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.h')
-rw-r--r--src/core.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core.h b/src/core.h
index 8a3d037..68bf957 100644
--- a/src/core.h
+++ b/src/core.h
@@ -2,21 +2,25 @@
#include "defines.h"
#include "input.h"
-#include "render_types.h"
+#include "ral.h"
+// #include "render_types.h"
#include "screenspace.h"
#include "text.h"
#include "threadpool.h"
typedef struct core {
+ // TODO: Add application name
renderer renderer;
threadpool threadpool;
input_state input;
text_system_state text;
screenspace_state screenspace;
+ model_darray* models;
} core;
// --- Lifecycle
core* core_bringup();
void core_shutdown(core* core);
+bool should_exit(core* core);
-void core_input_update(core* core); \ No newline at end of file
+void core_input_update(core* core);