blob: 2de5147767f4564ce0b399bd421d43bc31b30b7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "FortStatus")]
public enum FortStatus
{
[ProtoEnum(Name = "FORTSTATUS_MAX", Value = 1)]
FORTSTATUS_MAX = 1
}
}
|