See, it's working now (Tile sprites)

This commit is contained in:
j-weissen 2022-06-03 11:08:25 +02:00
parent 29de95f46a
commit 0288e90c78
11 changed files with 38 additions and 89 deletions

View file

@ -10,6 +10,11 @@ public class Crop
private bool _markedForDeletion;
public bool MarkedForDeletion => _markedForDeletion;
private bool _dead;
public bool IsDead => _dead;
private bool _hydrated;
private int _daysGrown;
public Crop()