diff options
Diffstat (limited to 'src/game/game.h')
-rw-r--r-- | src/game/game.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/game/game.h b/src/game/game.h new file mode 100644 index 0000000..b37798d --- /dev/null +++ b/src/game/game.h @@ -0,0 +1,11 @@ +#ifndef GAME_H +#define GAME_H + +typedef struct { + Arena *persistent_arena; + U32 shader; + Mesh *the_mesh; + F32 t; +} State; + +#endif /* GAME_H */ |