summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 14:33:34 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 14:33:34 +1000
commit82515f9d90ac149984013f0d64c1cab37b349b29 (patch)
tree6da445874d055e3e66ab1825d4aa3bb784955fc9 /src/core/core.h
parent5359c011a08ef2e06ed54104cc16c32868ca88ff (diff)
chore clang format + tidy
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/core.h b/src/core/core.h
index b0f8dbe..ac07c50 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -1,8 +1,8 @@
#pragma once
#include "input.h"
-#include "render_types.h"
#include "mem.h"
+#include "render_types.h"
#include "scene.h"
#include "screenspace.h"
#include "terrain.h"
@@ -14,11 +14,11 @@ TYPED_POOL(Model, Model)
typedef struct GLFWwindow GLFWwindow;
typedef struct Core {
- const char* app_name;
- GLFWwindow* window;
- Renderer* renderer;
- Input_State input;
- Model_pool models;
+ const char* app_name;
+ GLFWwindow* window;
+ Renderer* renderer;
+ Input_State input;
+ Model_pool models;
} Core;
extern Core g_core;