Implemented Loading function on fields and plants

This commit is contained in:
2025-11-15 22:15:02 +01:00
parent 3fcb34c04d
commit 6613e54658
11 changed files with 143 additions and 24 deletions
@@ -25,7 +25,11 @@ public partial class PlantBehaviour2D : Node2D
private bool _magicWordSaid = false;
private bool _calledOnReady = false;
public PlantState State => _state;
public PlantState State
{
get => _state;
set => _state = value;
}
public int DaysGrowing { get; set; }