aboutsummaryrefslogtreecommitdiff
path: root/include/globals.h
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-03-09 01:02:44 +0100
committerLeander Scherer <leander@schererleander.de>2026-03-09 01:02:44 +0100
commitfacde12002422cbfa02f5eae8e3d52d7c9971a07 (patch)
treecc9eba786412ddae8388978d56459f4c06d4e672 /include/globals.h
parentb1a73ecd51c73f07c429aa293cae2f1cd1e583a9 (diff)
feat(game): add global settings and debug mode
Diffstat (limited to 'include/globals.h')
-rw-r--r--include/globals.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/globals.h b/include/globals.h
new file mode 100644
index 0000000..e7830de
--- /dev/null
+++ b/include/globals.h
@@ -0,0 +1,13 @@
+#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