summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AI/AIRuntimeKillMonster.cs
blob: a330a20c07e380866923aab21eb4597751a0eb16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Xml;

namespace XMainClient
{
	internal class AIRuntimeKillMonster : AIRunTimeNodeAction
	{
		public AIRuntimeKillMonster(XmlElement node) : base(node)
		{
		}
	}
}