aboutsummaryrefslogtreecommitdiff
path: root/src/world.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.rs')
-rw-r--r--src/world.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/world.rs b/src/world.rs
index bf8b498..42e4d7c 100644
--- a/src/world.rs
+++ b/src/world.rs
@@ -194,10 +194,6 @@ impl Dungeon {
}
}
- fn draw_block(window: &Window, block: &TileType) {
- window.printw(Dungeon::tile_to_str(block));
- }
-
fn debug_level(level: &Level) {
let grid = level.to_tilegrid().unwrap();
@@ -208,18 +204,6 @@ impl Dungeon {
print!("\n");
}
}
-
- fn tile_to_str(tile: &TileType) -> &str {
- match tile {
- TileType::Floor => ".",
- TileType::Wall => "#",
- TileType::Empty => " ",
- TileType::StairsDown => ">",
- TileType::StairsUp => "<",
- TileType::Player => "@",
- _ => "?"
- }
- }
}
impl Generatable for Dungeon {