summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/PPTBehaviour.cs
blob: dc3f2ea367c9b45f9063b4add4bb8c7c31b74cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using UILib;
using XMainClient.UI.UICommon;

namespace XMainClient.UI
{
	internal class PPTBehaviour : DlgBehaviourBase
	{
		public IXUILabel m_PPT;

		public IXUILabel m_IncreasePPT;

		public IXUILabel m_DecreasePPT;

		private void Awake()
		{
			this.m_PPT = (base.transform.Find("Bg/PPT").GetComponent("XUILabel") as IXUILabel);
			this.m_IncreasePPT = (base.transform.Find("Bg/Delta/Inc").GetComponent("XUILabel") as IXUILabel);
			this.m_DecreasePPT = (base.transform.Find("Bg/Delta/Dec").GetComponent("XUILabel") as IXUILabel);
		}
	}
}