summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs
new file mode 100644
index 00000000..4712103f
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs
@@ -0,0 +1,16 @@
+using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BigMeleePointNtf
+ {
+ public static void Process(PtcG2C_BigMeleePointNtf roPtc)
+ {
+ bool flag = XBigMeleeBattleDocument.Doc.battleHandler != null;
+ if (flag)
+ {
+ XBigMeleeBattleDocument.Doc.battleHandler.SetGetPointAnimation(roPtc.Data.point, roPtc.Data.posxz);
+ }
+ }
+ }
+}