summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleReadyOper.cs
blob: 311939657cd4cdaac1334c528f4a5e03f8efe63b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "LeagueBattleReadyOper")]
	public enum LeagueBattleReadyOper
	{
		[ProtoEnum(Name = "LBReady_Up", Value = 1)]
		LBReady_Up = 1,
		[ProtoEnum(Name = "LBReady_Down", Value = 2)]
		LBReady_Down
	}
}