summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/CrossGVGBattleMember.cs
blob: df4b2129eb449d8cfa31ffaddf11640f8d6aae5a (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 CrossGVGBattleMember : GVGBattleMemberBase
	{
		protected override void SetupOtherMemberInfo(Transform t, GmfRole role)
		{
			IXUILabel ixuilabel = t.Find("Fight").GetComponent("XUILabel") as IXUILabel;
			ixuilabel.SetText(role.ppt.ToString());
		}
	}
}