diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/AI/AIRunTimeResetHartedList.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/AI/AIRunTimeResetHartedList.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/AI/AIRunTimeResetHartedList.cs b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeResetHartedList.cs new file mode 100644 index 00000000..f4ae56ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeResetHartedList.cs @@ -0,0 +1,18 @@ +using System;
+using System.Xml;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class AIRunTimeResetHartedList : AIRunTimeNodeAction
+ {
+ public AIRunTimeResetHartedList(XmlElement node) : base(node)
+ {
+ }
+
+ public override bool Update(XEntity entity)
+ {
+ return XSingleton<XAITarget>.singleton.ResetHartedList(entity);
+ }
+ }
+}
|