aboutsummaryrefslogtreecommitdiff
path: root/src/game/inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/inc')
-rw-r--r--src/game/inc/game.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/game/inc/game.h b/src/game/inc/game.h
index 8275d54..5298b9f 100644
--- a/src/game/inc/game.h
+++ b/src/game/inc/game.h
@@ -1,12 +1,20 @@
#ifndef GAME_H
#define GAME_H
+#include <stddef.h>
+
#ifdef __cplusplus
extern "C"
{
#endif
-int game(void);
+struct game_cfg
+{
+};
+
+int game_resinit(void);
+int game(const struct game_cfg *cfg);
+void game_free(void);
#ifdef __cplusplus
}