feat: Add growth_stage to TileState

This commit is contained in:
demenik
2025-12-02 17:04:31 +01:00
parent 3a069ad17d
commit 7f134ce696
5 changed files with 8 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ pub enum TileState {
Occupied {
seed: ItemType,
watered: bool,
growth_stage: u32,
},
}