summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-14 23:55:18 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-14 23:55:18 +1000
commitb9315f9cb625db09c3c41d8adf5230a67510bef7 (patch)
tree8e02010d4e29c82ec9310b02b7924f4c8456ef6f /src/core/core.h
parent529a603128d5e9dc4701322f44961f165e2183e1 (diff)
wip shadows
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 78dcd14..b0f8dbe 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -2,12 +2,25 @@
#include "input.h"
#include "render_types.h"
+#include "mem.h"
#include "scene.h"
#include "screenspace.h"
#include "terrain.h"
#include "text.h"
-typedef struct Core Core;
+TYPED_POOL(Model, Model)
+#define MODEL_GET(h) (Model_pool_get(&g_core.models, h))
+
+typedef struct GLFWwindow GLFWwindow;
+
+typedef struct Core {
+ const char* app_name;
+ GLFWwindow* window;
+ Renderer* renderer;
+ Input_State input;
+ Model_pool models;
+} Core;
+extern Core g_core;
struct Renderer;