summaryrefslogtreecommitdiffhomepage
path: root/src/init.h
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-05-30 18:27:27 -0400
committerrealtradam <[email protected]>2023-05-30 18:27:27 -0400
commitfdffc6ef7cc37ae1c4d78f5f869d2b8f027d5aaa (patch)
treef94c6c1a5a523d23b9ddd76c821587f16d84da1e /src/init.h
parentc43ac3e4ce4375b6fa1fa9927e20ff4f88504429 (diff)
downloadTOJam2023-fdffc6ef7cc37ae1c4d78f5f869d2b8f027d5aaa.tar.gz
TOJam2023-fdffc6ef7cc37ae1c4d78f5f869d2b8f027d5aaa.zip
fix rendering bug and clean up some code
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/init.h b/src/init.h
new file mode 100644
index 0000000..bcc53d6
--- /dev/null
+++ b/src/init.h
@@ -0,0 +1,13 @@
+#include "rodeo.h"
+
+void
+init_game_systems(void);
+
+void
+deinit_game_systems(void);
+
+#define game_systems_init_do() \
+ mrodeo_defer_do( \
+ init_game_systems(), \
+ deinit_game_systems() \
+ )