diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asset_defs.h | 8 | ||||
| -rw-r--r-- | include/map.h | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/include/asset_defs.h b/include/asset_defs.h index 455aad7..6bb18e1 100644 --- a/include/asset_defs.h +++ b/include/asset_defs.h @@ -109,7 +109,7 @@ image* img_zombie_chunk_hand; image* img_zombie_chunk_foot; image* img_zombie_chunk_blood; -// Tiles +// Tiles @NEWTILE image* img_mars_surface; image* img_space_parallax; image* img_tile_floor1; @@ -118,6 +118,12 @@ image* img_tile_bathroom; image* img_tile_funk; image* img_tile_wood1; image* img_tile_gym; +image* img_tile_flowers; +image* img_tile_carpet1; +image* img_tile_carpet2; +image* img_tile_carpet3; +image* img_tile_carpet4; +image* img_tile_carpet5; // Sounds Mix_Chunk* wav_throwable_bounce; diff --git a/include/map.h b/include/map.h index 960e9e6..b3c1512 100644 --- a/include/map.h +++ b/include/map.h @@ -15,6 +15,12 @@ typedef enum t_tile_type { TILE_FUNK = 4, TILE_WOOD1 = 5, TILE_GYM = 6, + TILE_FLOWERS = 7, + TILE_CARPET1 = 8, + TILE_CARPET2 = 9, + TILE_CARPET3 = 10, + TILE_CARPET4 = 11, + TILE_CARPET5 = 12, TILE_END, } tile_type; |
