From 763b047c92a5d5340bad38506862ad6c87ecdbe9 Mon Sep 17 00:00:00 2001 From: alf9310 Date: Thu, 6 Nov 2025 12:20:57 -0500 Subject: Light bsp refactoring --- dungeon/src/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dungeon/src/map.rs') diff --git a/dungeon/src/map.rs b/dungeon/src/map.rs index 212dd00..f4a8729 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)] +#[derive(Clone, Debug, PartialEq, Eq)] pub struct Floor { /// The dungeon grid tiles: Box<[Tile; TILE_COUNT]>, -- cgit v1.2.3-freya