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

namespace XMainClient
{
	internal class TaJieHelpBehaviour : DlgBehaviourBase
	{
		public GameObject m_parentGo;

		public IXUIButton m_closedBtn;

		public IXUIWrapContent m_wrapContent;

		private void Awake()
		{
			this.m_parentGo = base.gameObject;
			this.m_closedBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.m_wrapContent = (base.transform.Find("Bg/detail/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
		}
	}
}