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

namespace XMainClient
{
	internal class AIRunTimeNodeAction : AIRunTimeNodeBase
	{
		public AIRunTimeNodeAction(XmlElement node) : base(node)
		{
			this._type = NodeType.NODE_TYPE_ACTION;
		}
	}
}