Day 37 complete.

This commit is contained in:
igor
2026-04-20 08:40:29 -07:00
parent 078b1e8a0c
commit 40c34f2b9d
6 changed files with 88 additions and 19 deletions
+12 -1
View File
@@ -165,12 +165,23 @@ typedef struct world {
tile_map *TileMap;
} world;
typedef struct loaded_bitmap {
S32 Width;
S32 Height;
U32 *Pixels;
} loaded_bitmap;
typedef struct game_state {
memory_arena WorldArena;
world *World;
tile_map_position PlayerP;
U32 *PixelPointer;
loaded_bitmap Backdrop;
loaded_bitmap HeroHead;
loaded_bitmap HeroCape;
loaded_bitmap HeroTorso;
} game_state;
#endif