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