summaryrefslogtreecommitdiff
path: root/src/map.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-05-15 22:08:10 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-05-15 22:08:10 +0200
commite2fb2bc2072f7d404a1c1664836d25b84b6fad03 (patch)
tree297b95ddf1c9ecb6711e2dfc8200f96a66d57d59 /src/map.c
parent00d2b70189bb564ab2a4f7ba6fc303dda712376f (diff)
club and bowling assets
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/map.c b/src/map.c
index d2e44d9..9b21725 100644
--- a/src/map.c
+++ b/src/map.c
@@ -398,6 +398,24 @@ image* get_image_from_tiletype(tile_type tile) {
case TILE_CARPET3: return img_tile_carpet3;
case TILE_CARPET4: return img_tile_carpet4;
case TILE_CARPET5: return img_tile_carpet5;
+ case TILE_CARPET_STAIRS_v: return img_tile_carpet_stairs_v;
+ case TILE_CLUB1: return img_tile_club1;
+ case TILE_CLUB2: return img_tile_club2;
+ case TILE_CLUB3: return img_tile_club3;
+ case TILE_CLUB4: return img_tile_club4;
+ case TILE_CLUB_STAIRS1: return img_tile_club_stairs1;
+ case TILE_CLUB_STAIRS2: return img_tile_club_stairs2;
+ case TILE_CLUB_STAIRS3: return img_tile_club_stairs3;
+ case TILE_CLUB_STAIRS4: return img_tile_club_stairs4;
+ case TILE_CLUB_STAIRS5: return img_tile_club_stairs5;
+ case TILE_CLUB_STAIRS6: return img_tile_club_stairs6;
+ case TILE_CLUB_STAIRS7: return img_tile_club_stairs7;
+ case TILE_CLUB_STAIRS8: return img_tile_club_stairs8;
+ case TILE_CLUB_STAIRS9: return img_tile_club_stairs9;
+ case TILE_CLUB_STAIRS10: return img_tile_club_stairs10;
+ case TILE_CLUB_STAIRS11: return img_tile_club_stairs11;
+ case TILE_CLUB_STAIRS12: return img_tile_club_stairs12;
+ case TILE_CLUB_STAIRS13: return img_tile_club_stairs13;
default: return 0;
}
}