summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs
blob: 1a10b37ccc93c107ca09c271c0dec3cbbed36a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
			}
		}
	}
}