Add and place TileType::Exit

This commit is contained in:
2021-07-10 21:00:39 -05:00
parent feb02b5fba
commit 218f683651
4 changed files with 21 additions and 6 deletions

View File

@@ -15,6 +15,7 @@ impl MapTheme for DungeonTheme {
match tile_type {
TileType::Floor => to_cp437('.'),
TileType::Wall => to_cp437('#'),
TileType::Exit => to_cp437('>'),
}
}
}
@@ -30,6 +31,7 @@ impl MapTheme for ForestTheme {
match tile_type {
TileType::Floor => to_cp437(';'),
TileType::Wall => to_cp437('"'),
TileType::Exit => to_cp437('>'),
}
}
}