summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/ChatChannel.cs
blob: a750ed0cd20e78363e256755b2bc9e950b43b983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "ChatChannel")]
	public enum ChatChannel
	{
		[ProtoEnum(Name = "WorldChannel", Value = 1)]
		WorldChannel = 1,
		[ProtoEnum(Name = "GuildChannel", Value = 2)]
		GuildChannel,
		[ProtoEnum(Name = "PrivateChannel", Value = 3)]
		PrivateChannel,
		[ProtoEnum(Name = "SystemChannel", Value = 4)]
		SystemChannel,
		[ProtoEnum(Name = "LampShortChannel", Value = 5)]
		LampShortChannel,
		[ProtoEnum(Name = "LampLongChannel", Value = 6)]
		LampLongChannel,
		[ProtoEnum(Name = "TeamChannel", Value = 7)]
		TeamChannel,
		[ProtoEnum(Name = "CampChannel", Value = 8)]
		CampChannel,
		[ProtoEnum(Name = "SpectateChannel", Value = 9)]
		SpectateChannel,
		[ProtoEnum(Name = "CurrentChannel", Value = 10)]
		CurrentChannel,
		[ProtoEnum(Name = "PartnerChannel", Value = 11)]
		PartnerChannel,
		[ProtoEnum(Name = "AudioChannel", Value = 12)]
		AudioChannel,
		[ProtoEnum(Name = "BattleChannel", Value = 13)]
		BattleChannel,
		[ProtoEnum(Name = "GroupChatChannel", Value = 14)]
		GroupChatChannel
	}
}