diff options
author | nathan <nathansmith@disroot.org> | 2025-07-06 11:13:16 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-06 11:13:16 +0000 |
commit | 601961a245a48112029341437912fe13b54dac0b (patch) | |
tree | a3cf0a664b02bbecb3c5e146c1b2eabcec191623 /src/game.h | |
parent | 942924f120d104cf0d6f080497c286d98bd14e11 (diff) | |
download | FindThings-601961a245a48112029341437912fe13b54dac0b.tar.gz FindThings-601961a245a48112029341437912fe13b54dac0b.tar.bz2 FindThings-601961a245a48112029341437912fe13b54dac0b.zip |
rreeee
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,6 +3,7 @@ #include "assets.h" #include "player.h" #include "world.h" +#include "entity.h" #ifndef GAME_H #define GAME_H @@ -10,14 +11,17 @@ typedef enum { MAIN_MENU_SCENE, GAME_SCENE -} SceneID; +} SceneId; struct Game { - SceneID sceneId; + SceneId sceneId; Settings settings; Assets assets; Player player; World world; + + // For testing only. + Entity entities[2]; }; void initGame(Game* game); |