aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-07-06 11:13:16 +0000
committernathan <nathansmith@disroot.org>2025-07-06 11:13:16 +0000
commit601961a245a48112029341437912fe13b54dac0b (patch)
treea3cf0a664b02bbecb3c5e146c1b2eabcec191623 /src/game.h
parent942924f120d104cf0d6f080497c286d98bd14e11 (diff)
downloadFindThings-601961a245a48112029341437912fe13b54dac0b.tar.gz
FindThings-601961a245a48112029341437912fe13b54dac0b.tar.bz2
FindThings-601961a245a48112029341437912fe13b54dac0b.zip
rreeee
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h8
1 files changed, 6 insertions, 2 deletions
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);