From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XMainClient/KKSG/PlantGrowState.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PlantGrowState.cs') 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 + } +} -- cgit v1.1-26-g67d0