summaryrefslogtreecommitdiffhomepage
path: root/src/init.h
diff options
context:
space:
mode:
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() \
+ )