aboutsummaryrefslogtreecommitdiff
path: root/include/globals.h
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-03-11 23:16:49 +0100
committerLeander Scherer <leander@schererleander.de>2026-03-11 23:16:49 +0100
commitd3a1bb552e9efc4e516841158aaaea3d8ab9202d (patch)
tree16957aab86a6fdfd6c6aae0873babe359bf386a9 /include/globals.h
parent9fb384552cb0a036a5978dfc40cddbbe2d29727c (diff)
refactor(entity): replace EntityManager with typed Entities struct
Diffstat (limited to 'include/globals.h')
-rw-r--r--include/globals.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/globals.h b/include/globals.h
deleted file mode 100644
index e7830de..0000000
--- a/include/globals.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef GLOBALS_H
-#define GLOBALS_H
-
-#include "raylib.h"
-
-#define TILE_SIZE 16
-#define SCREEN_WIDTH 1280
-#define SCREEN_HEIGHT 720
-#define BACKGROUND_COLOR (Color){ 88, 68, 34, 255 }
-
-extern bool debugMode;
-
-#endif