blob: f6130b91929892f2812a7db66bdb2b90230a3f82 (
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 = "BattleChestRewardType")]
public enum BattleChestRewardType
{
[ProtoEnum(Name = "GOLD_CHEST", Value = 1)]
GOLD_CHEST = 1,
[ProtoEnum(Name = "SILVER_CHEST", Value = 2)]
SILVER_CHEST,
[ProtoEnum(Name = "COPPER_CHEST", Value = 3)]
COPPER_CHEST,
[ProtoEnum(Name = "WOOD_CHEST", Value = 4)]
WOOD_CHEST
}
}
|