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

namespace KKSG
{
	[ProtoContract(Name = "LeaveSceneType")]
	public enum LeaveSceneType
	{
		[ProtoEnum(Name = "LEAVE_SCENE_LOGOUT", Value = 1)]
		LEAVE_SCENE_LOGOUT = 1,
		[ProtoEnum(Name = "LEAVE_SCENE_SWITCH", Value = 2)]
		LEAVE_SCENE_SWITCH
	}
}