aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-11-05 11:04:07 +0000
committernathan <nathansmith@disroot.org>2025-11-05 11:04:07 +0000
commit2769ba6929b8aff2eadbb6c2e66ef4db25332e9b (patch)
tree2e584716b50c069aa227dce19aa835542b5f60cf /src/game.h
parent5a1c6f8d8db8311d8be286c40792227549594693 (diff)
downloadFindThings-2769ba6929b8aff2eadbb6c2e66ef4db25332e9b.tar.gz
FindThings-2769ba6929b8aff2eadbb6c2e66ef4db25332e9b.tar.bz2
FindThings-2769ba6929b8aff2eadbb6c2e66ef4db25332e9b.zip
Lazyyyyy
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h
index 612cfb1..5a0f4e8 100644
--- a/src/game.h
+++ b/src/game.h
@@ -4,6 +4,7 @@
#include "player.h"
#include "world.h"
#include "entity.h"
+#include "messageArea.h"
#ifndef GAME_H
#define GAME_H
@@ -17,12 +18,14 @@ typedef enum {
} SceneId;
struct Game {
- SceneId sceneId;
Settings settings;
Assets assets;
Player player;
World world;
Model skybox;
+ MessageArea messageArea;
+
+ SceneId sceneId;
bool isCursorEnabled;
struct {