summaryrefslogtreecommitdiff
path: root/src/game/game.h
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-03-19 08:40:27 +0500
committerpryazha <pryadeiniv@mail.ru>2025-03-19 08:40:27 +0500
commit7890db46928c9f1d4c4652c8dc007370cb897468 (patch)
treeacb39a102bb6ada3bdab6c3e59e82181573f7247 /src/game/game.h
parent60bd06ced6de9f1272e31da323996db2d8b8a531 (diff)
some changes and textures
Diffstat (limited to 'src/game/game.h')
-rw-r--r--src/game/game.h17
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 */