summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs b/Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs
new file mode 100644
index 00000000..6329a453
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs
@@ -0,0 +1,22 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "PlantGrowState")]
+ public enum PlantGrowState
+ {
+ [ProtoEnum(Name = "growDrought", Value = 1)]
+ growDrought = 1,
+ [ProtoEnum(Name = "growPest", Value = 2)]
+ growPest,
+ [ProtoEnum(Name = "growSluggish", Value = 3)]
+ growSluggish,
+ [ProtoEnum(Name = "growCD", Value = 4)]
+ growCD,
+ [ProtoEnum(Name = "growMature", Value = 5)]
+ growMature,
+ [ProtoEnum(Name = "growCorrect", Value = 6)]
+ growCorrect
+ }
+}