blob: e5c346b4312ec71576e5ac15b5077b713a214d2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "IntegralState")]
public enum IntegralState
{
[ProtoEnum(Name = "integralready", Value = 1)]
integralready = 1,
[ProtoEnum(Name = "integralenterscene", Value = 2)]
integralenterscene,
[ProtoEnum(Name = "integralwatch", Value = 3)]
integralwatch,
[ProtoEnum(Name = "integralend", Value = 4)]
integralend
}
}
|