summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AI/AIRunTimeDecorationNode.cs
blob: ce4b3d5e8b7a15a85ac3e4cd4c76009f1657f9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Xml;

namespace XMainClient
{
	internal class AIRunTimeDecorationNode : AIRunTimeNodeBase
	{
		protected AIRunTimeNodeBase _child_node = null;

		public AIRunTimeDecorationNode(XmlElement node) : base(node)
		{
			this._type = NodeType.NODE_TYPE_DECORATION;
		}

		public override void AddChild(AIRunTimeNodeBase child)
		{
			this._child_node = child;
		}
	}
}