diff options
Diffstat (limited to 'dungeon')
| -rw-r--r-- | dungeon/src/map.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dungeon/src/map.rs b/dungeon/src/map.rs index 4e1f235..a568950 100644 --- a/dungeon/src/map.rs +++ b/dungeon/src/map.rs @@ -56,11 +56,6 @@ impl Tile { // Index by u16 } -impl Default for Tile { - fn default() -> Self { - Self::Wall - } -} impl Display for Tile { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let char = match self { |