blob: 6329a4531fab9500f8debfcc334e85c5b30e1a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
}
}
|