Extracted FightAttack Enum in the hopes of fixing errors
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user