summaryrefslogtreecommitdiff
path: root/src/core/core.c
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.c
parent529a603128d5e9dc4701322f44961f165e2183e1 (diff)
wip shadows
Diffstat (limited to 'src/core/core.c')
-rw-r--r--src/core/core.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/core.c b/src/core/core.c
index 385479d..6ccd0d0 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -17,13 +17,6 @@
Core g_core; /** @brief global `Core` that other files can use */
-struct Core {
- const char* app_name;
- GLFWwindow* window;
- Renderer* renderer;
- Input_State input;
-};
-
/** @brief Gets the global `Core` singleton */
inline Core* GetCore() { return &g_core; }