aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-07-03 21:34:28 +0000
committernathan <nathansmith@disroot.org>2025-07-03 21:34:28 +0000
commitd67fc3baa8180703f2280738d13335cb9665b348 (patch)
treec336f48d86b7dc6296562a068b4828177b5b47a6 /src/game.h
downloadFindThings-d67fc3baa8180703f2280738d13335cb9665b348.tar.gz
FindThings-d67fc3baa8180703f2280738d13335cb9665b348.tar.bz2
FindThings-d67fc3baa8180703f2280738d13335cb9665b348.zip
first commit
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
new file mode 100644
index 0000000..bc0fc8c
--- /dev/null
+++ b/src/game.h
@@ -0,0 +1,15 @@
+#include "utils.h"
+#include "settings.h"
+
+#ifndef GAME_H
+#define GAME_H
+
+typedef struct Game {
+ Settings settings;
+} Game;
+
+void initGame(Game* game);
+void updateGame(Game* game);
+void closeGame(Game* game);
+
+#endif