town tweaks, themes

This commit is contained in:
Llywelwyn 2023-07-26 02:30:25 +01:00
parent f2fabafe57
commit a54e604681
5 changed files with 268 additions and 255 deletions

View file

@ -13,6 +13,8 @@ pub enum TileType {
Gravel,
Road,
Grass,
Foliage,
HeavyFoliage,
Sand,
ShallowWater,
Bridge,
@ -27,6 +29,8 @@ pub fn tile_walkable(tt: TileType) -> bool {
| TileType::Gravel
| TileType::Road
| TileType::Grass
| TileType::Foliage
| TileType::HeavyFoliage
| TileType::Sand
| TileType::ShallowWater
| TileType::Bridge