From 258b4b2b07eb8b12abedecbe9fd079025f978a1c Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 11 Nov 2025 14:10:40 -0500 Subject: dungeon: remove unused impl Default for Tile --- dungeon/src/map.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'dungeon') 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 { -- cgit v1.2.3-freya