summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AI/AIRunTimeSelectNonHartedList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/AI/AIRunTimeSelectNonHartedList.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/AI/AIRunTimeSelectNonHartedList.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/AI/AIRunTimeSelectNonHartedList.cs b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeSelectNonHartedList.cs
new file mode 100644
index 00000000..11f140ca
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeSelectNonHartedList.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Xml;
+
+namespace XMainClient
+{
+ internal class AIRunTimeSelectNonHartedList : AIRunTimeNodeAction
+ {
+ public AIRunTimeSelectNonHartedList(XmlElement node) : base(node)
+ {
+ }
+
+ public override bool Update(XEntity entity)
+ {
+ return true;
+ }
+ }
+}