diff options
Diffstat (limited to 'dungeon/src/map.rs')
| -rw-r--r-- | dungeon/src/map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dungeon/src/map.rs b/dungeon/src/map.rs index f4a8729..212dd00 100644 --- a/dungeon/src/map.rs +++ b/dungeon/src/map.rs @@ -52,7 +52,7 @@ impl Default for Tile { /// The `Floor` type represents the current playing /// grid of the dungeon. It contains the tiles of the /// grid, and the starting position of the player. -#[derive(Clone, Debug, PartialEq, Eq)] +#[derive(Clone, Debug, PartialEq)] pub struct Floor { /// The dungeon grid tiles: Box<[Tile; TILE_COUNT]>, |