Files
Babushka/scripts/CSharp/Common/Farming/PlantState.cs
T

13 lines
241 B
C#

namespace Babushka.scripts.CSharp.Common.Farming;
/// <summary>
/// State of a harvestable plant. Used in farming.
/// </summary>
public enum PlantState
{
None = 0,
Planted = 1,
SmallPlant = 2,
BigPlant = 3,
Ready = 4
}