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