refactor: move direction & edible into entity submodule

This commit is contained in:
2025-07-24 12:44:47 -05:00
parent 002da46045
commit 829462d3b6
11 changed files with 12 additions and 13 deletions

View File

@@ -1,10 +1,12 @@
pub mod blinky;
pub mod direction;
pub mod edible;
pub mod ghost;
pub mod pacman;
use crate::{
constants::{MapTile, BOARD_OFFSET, BOARD_WIDTH, CELL_SIZE},
direction::Direction,
entity::direction::Direction,
map::Map,
modulation::SimpleTickModulator,
};