summaryrefslogtreecommitdiffstats
path: root/src/include/game/init.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/game/init.h')
-rw-r--r--src/include/game/init.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/game/init.h b/src/include/game/init.h
new file mode 100644
index 0000000..33b17ed
--- /dev/null
+++ b/src/include/game/init.h
@@ -0,0 +1,17 @@
+#ifndef INIT_H
+#define INIT_H
+
+extern void initSubsystems(int argc, const char *argv[]);
+extern void initScripting(void);
+extern void initConfiguration(int argc, const char *argv[]);
+extern void initVideo(void);
+extern void initAudio(void);
+extern void initInput(void);
+extern void initGame(void);
+
+/* platform stuff */
+
+extern void videoInit(void);
+extern void audioInit(void);
+extern void inputInit(void);
+#endif