blob: a89bd6438f2b901228b8f31bbbd3d4fde2aae03f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  | 
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient.UI
{
	internal class GuildTerritoryMessageBehaviour : DlgBehaviourBase
	{
		public IXUIButton mClose;
		public IXUIScrollView mScrollView;
		public IXUIWrapContent mWrapContent;
		public IXUILabel mNameLabel;
		private void Awake()
		{
			this.mClose = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
			this.mScrollView = (base.transform.Find("ScrollView").GetComponent("XUIScrollView") as IXUIScrollView);
			this.mNameLabel = (base.transform.Find("Name").GetComponent("XUILabel") as IXUILabel);
			this.mWrapContent = (base.transform.Find("ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
		}
	}
}
  |