diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs new file mode 100644 index 00000000..f64283c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BigMeleePointOutLookNtf
+ {
+ public static void Process(PtcG2C_BigMeleePointOutLookNtf roPtc)
+ {
+ bool flag = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_BIGMELEE_FIGHT;
+ if (flag)
+ {
+ XBigMeleeBattleDocument.Doc.SetPoint(roPtc.Data.roleid, roPtc.Data.point);
+ }
+ }
+ }
+}
|