summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Chat/ChatChannelType.cs
blob: 1eb8d6be73ed423216eed896504fe56320666799 (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
using System;

namespace XMainClient
{
	public enum ChatChannelType
	{
		DEFAULT = -9999,
		RecentContacts = -1,
		ZeroChannel,
		World,
		Guild,
		Friends,
		System,
		LampShort,
		LampLong,
		Team,
		Camp,
		Spectate,
		Curr,
		Partner,
		Broadcast,
		Battle,
		Group,
		ChannelNum
	}
}