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