diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-11 14:10:40 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-11 14:10:40 -0500 |
| commit | 258b4b2b07eb8b12abedecbe9fd079025f978a1c (patch) | |
| tree | b096f0ed350b9deccc6b0cd6f7fa73f49823f36e /dungeon | |
| parent | graphics: refactor input key type (diff) | |
| download | DungeonCrawl-258b4b2b07eb8b12abedecbe9fd079025f978a1c.tar.gz DungeonCrawl-258b4b2b07eb8b12abedecbe9fd079025f978a1c.tar.bz2 DungeonCrawl-258b4b2b07eb8b12abedecbe9fd079025f978a1c.zip | |
dungeon: remove unused impl Default for Tile
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 { |