summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/XDebugChannel.cs
blob: afb13b91719efefaa95e2be66f0d52afe00150b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace XUtliPoolLib
{
	public enum XDebugChannel
	{
		XDebug_Invalid,
		XDebug_Default,
		XDebug_Move,
		XDebug_Skill = 4,
		XDebug_Buff = 8,
		XDebug_Death = 16,
		XDebug_AI = 32,
		XDebug_UI = 64,
		XDebug_Component = 128,
		XDebug_Network = 256
	}
}