From 601961a245a48112029341437912fe13b54dac0b Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 6 Jul 2025 05:13:16 -0600 Subject: rreeee --- src/game.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index 8817633..ab162ad 100644 --- a/src/game.h +++ b/src/game.h @@ -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); -- cgit v1.2.3