summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AI/AIRunTimeLogicNode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/AI/AIRunTimeLogicNode.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/AI/AIRunTimeLogicNode.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/AI/AIRunTimeLogicNode.cs b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeLogicNode.cs
new file mode 100644
index 00000000..7f78dc4f
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeLogicNode.cs
@@ -0,0 +1,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);
+ }
+ }
+}