diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs new file mode 100644 index 00000000..1a10b37c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaAddExpNtf
+ {
+ public static void Process(PtcG2C_MobaAddExpNtf roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.m_MobaBattleHandler != null;
+ if (flag)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.m_MobaBattleHandler.SetGetExpAnimation((uint)roPtc.Data.addexp, roPtc.Data.posxz);
+ }
+ }
+ }
+}
|