summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/InnerGVGBattleMember.cs
blob: 6820d4124657f6b5efd57814b5f9a1d168399360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using KKSG;
using UILib;
using UnityEngine;

namespace XMainClient.UI
{
	internal class InnerGVGBattleMember : GVGBattleMemberBase
	{
		protected override void SetupOtherMemberInfo(Transform t, GmfRole role)
		{
			IXUILabel ixuilabel = t.Find("Fight").GetComponent("XUILabel") as IXUILabel;
			ixuilabel.SetText(role.pkpoint.ToString());
		}
	}
}