diff options
Diffstat (limited to 'src/game/game.h')
-rw-r--r-- | src/game/game.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/game/game.h b/src/game/game.h index b37798d..bd98e7e 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -2,10 +2,19 @@ #define GAME_H typedef struct { - Arena *persistent_arena; - U32 shader; - Mesh *the_mesh; - F32 t; + Arena *parena; + + Texture texture; + + Camera camera; + V3 camera_dp; + + Model *model; + + U32 mesh_shader; + U32 ui_shader; + + F32 t; } State; #endif /* GAME_H */ |