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

		public IXUIWrapContent m_wrap;

		public IXUIScrollView m_scroll;

		private void Awake()
		{
			this.m_scroll = (base.transform.Find("Bg/ScrollView").GetComponent("XUIScrollView") as IXUIScrollView);
			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);
		}
	}
}