Move skirmish Offset and FocusedCell to own module

Extract Offset and FocusedCell structs from skirmish.rs into a new
skirmish_states module. Re-export the structs from the top-level states
module and adjust imports in skirmish.rs.
This commit is contained in:
2026-04-01 22:10:25 +02:00
parent f405c3cde1
commit c4e28255b6
5 changed files with 94 additions and 86 deletions
+5
View File
@@ -0,0 +1,5 @@
pub mod focused_cell;
pub mod offset;
pub use focused_cell::FocusedCell;
pub use offset::Offset;