blob: a7f6646c33d91fcc69a43a020f90ca4b5b9b1667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "HeroBattleOver")]
public enum HeroBattleOver
{
[ProtoEnum(Name = "HeroBattleOver_Win", Value = 1)]
HeroBattleOver_Win = 1,
[ProtoEnum(Name = "HeroBattleOver_Lose", Value = 2)]
HeroBattleOver_Lose,
[ProtoEnum(Name = "HeroBattleOver_Draw", Value = 3)]
HeroBattleOver_Draw
}
}
|