summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AI/AIMsgTarget.cs
blob: 49a1f483625054be7c7991a5291cf62cc46f9f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace XMainClient
{
	public enum AIMsgTarget
	{
		Ally,
		Role,
		Boss,
		Monster,
		Enemy,
		All,
		LevelMgr,
		GlobalAI
	}
}