diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-14 09:56:40 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-14 10:01:13 -0500 |
| commit | 9a4cd221f8206fb1533937170f47dcd19d574ef1 (patch) | |
| tree | 14d7c270d3f621070f75b878c5df4a7b872c8008 /dungeon/src/astar.rs | |
| parent | Enable more clippy lints (diff) | |
| download | DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.gz DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.bz2 DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.zip | |
Remove wildcard exports/imports
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 { |