Move buildings and units under skirmish_states

Reorganize the codebase by moving the buildings and units modules
into the skirmish_states namespace, updating imports accordingly.
This commit is contained in:
2026-04-19 18:02:36 +02:00
parent 6a43b28e67
commit 54e86b2688
8 changed files with 4 additions and 6 deletions
+2
View File
@@ -1,6 +1,8 @@
mod board;
pub mod buildings;
mod focused_cell;
mod offset;
pub mod units;
pub use board::BoardState;
pub use focused_cell::{FocusedCell, MoveFocusedCell};