mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-13 12:12:25 -06:00
refactor: remove dead code, move direction & graph into 'map' module
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//! Map construction and building functionality.
|
||||
use crate::constants::{MapTile, BOARD_CELL_SIZE, CELL_SIZE};
|
||||
use crate::entity::direction::Direction;
|
||||
use crate::entity::graph::{Graph, Node, TraversalFlags};
|
||||
use crate::map::direction::Direction;
|
||||
use crate::map::graph::{Graph, Node, TraversalFlags};
|
||||
use crate::map::parser::MapTileParser;
|
||||
use crate::systems::movement::NodeId;
|
||||
use bevy_ecs::resource::Resource;
|
||||
|
||||
Reference in New Issue
Block a user