diff options
Diffstat (limited to 'dungeon/src/astar.rs')
| -rw-r--r-- | dungeon/src/astar.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dungeon/src/astar.rs b/dungeon/src/astar.rs index a2ae4d3..d26ca5e 100644 --- a/dungeon/src/astar.rs +++ b/dungeon/src/astar.rs @@ -3,7 +3,7 @@ use std::{ hash::Hash, }; -use crate::{Floor, Pos}; +use crate::{map::Floor, pos::Pos}; #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] struct Node { |