summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/GuildTerritoryDeclareBehaviour.cs
blob: 199a092abb45753efbb588e7a0e893529878663f (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using UILib;
using XMainClient.UI.UICommon;

namespace XMainClient.UI
{
	internal class GuildTerritoryDeclareBehaviour : DlgBehaviourBase
	{
		public IXUIButton mClose;

		public IXUISprite mSprite;

		public IXUIScrollView mAllianceScrollView;

		public IXUIWrapContent mAllianceWrapContent;

		public IXUILabel mMessage;

		public IXUILabel mTerritoryName;

		public IXUILabel mTerritoryGuildName;

		public IXUILabel mTerritoryCount;

		public IXUILabel mTerritoryLevel;

		public IXUIButton mTerritoryDeclare;

		public IXUIButton mTerritoryJoin;

		public IXUILabel mTerritoryMessage;

		private void Awake()
		{
			this.mAllianceScrollView = (base.transform.Find("Alliance").GetComponent("XUIScrollView") as IXUIScrollView);
			this.mAllianceWrapContent = (base.transform.Find("Alliance/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
			this.mSprite = (base.transform.Find("Sprite").GetComponent("XUISprite") as IXUISprite);
			this.mClose = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
			this.mMessage = (base.transform.Find("Message").GetComponent("XUILabel") as IXUILabel);
			this.mTerritoryName = (base.transform.Find("TerritoryName").GetComponent("XUILabel") as IXUILabel);
			this.mTerritoryGuildName = (base.transform.Find("TerritoryGuildName").GetComponent("XUILabel") as IXUILabel);
			this.mTerritoryLevel = (base.transform.Find("TerritoryLevel").GetComponent("XUILabel") as IXUILabel);
			this.mTerritoryCount = (base.transform.Find("TerritoryCount").GetComponent("XUILabel") as IXUILabel);
			this.mTerritoryDeclare = (base.transform.Find("Declare").GetComponent("XUIButton") as IXUIButton);
			this.mTerritoryJoin = (base.transform.Find("Join").GetComponent("XUIButton") as IXUIButton);
			this.mTerritoryMessage = (base.transform.Find("TerritoryMessage").GetComponent("XUILabel") as IXUILabel);
		}
	}
}