summaryrefslogtreecommitdiff
path: root/src/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.h')
-rw-r--r--src/core.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core.h b/src/core.h
index 1031868..89702fd 100644
--- a/src/core.h
+++ b/src/core.h
@@ -1,6 +1,7 @@
#pragma once
#include "input.h"
+#include "render_types.h"
#include "scene.h"
#include "screenspace.h"
#include "terrain.h"
@@ -19,7 +20,8 @@ typedef struct core {
screenspace_state screenspace;
// data storage
scene default_scene;
- model_darray* models;
+ model_pool models;
+ // model_darray* models;
} core;
core* get_global_core();