aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/game.h b/src/game.h
index f25c97f..8c9969a 100644
--- a/src/game.h
+++ b/src/game.h
@@ -6,18 +6,20 @@
#ifndef GAME_H
#define GAME_H
-typedef enum SceneID {
+typedef enum {
MAIN_MENU_SCENE,
GAME_SCENE
} SceneID;
-typedef struct Game {
+struct Game {
SceneID sceneId;
Settings settings;
Assets assets;
Player player;
+
Model heightmap;
-} Game;
+ Color* heightmapColors;
+};
void initGame(Game* game);
void updateGame(Game* game);