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

namespace XMainClient
{
	internal class AIRunTimeLogicNode : AIRunTimeNodeBase
	{
		protected List<AIRunTimeNodeBase> _list_node = new List<AIRunTimeNodeBase>();

		public AIRunTimeLogicNode(XmlElement node) : base(node)
		{
			this._type = NodeType.NODE_TYPE_LOGIC;
		}

		public override void AddChild(AIRunTimeNodeBase child)
		{
			this._list_node.Add(child);
		}
	}
}