summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Chat/ChatGroupBehaviour.cs
blob: 264d27e808e27b75dd712884b8240c8d889ff2a1 (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
{
	internal class ChatGroupBehaviour : DlgBehaviourBase
	{
		public IXUISprite m_sprClose;

		public IXUIWrapContent m_wrap;

		public IXUICheckBox m_add;

		public IXUICheckBox m_rm;

		private void Awake()
		{
			this.m_wrap = (base.transform.Find("Bg/ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
			this.m_sprClose = (base.transform.Find("Bg/Close").GetComponent("XUISprite") as IXUISprite);
			this.m_add = (base.transform.Find("Bg/tabs/tab1/template/Bg").GetComponent("XUICheckBox") as IXUICheckBox);
			this.m_rm = (base.transform.Find("Bg/tabs/tab2/template/Bg").GetComponent("XUICheckBox") as IXUICheckBox);
		}
	}
}