summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/XPlayerMailView.cs
blob: 25a8304a880c3c58979a247982eef79411b684a9 (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
using System;
using XUtliPoolLib;

namespace XMainClient.UI
{
	internal class XPlayerMailView : DlgHandlerBase
	{
		private XMailDocument _doc = null;

		protected override void Init()
		{
			base.Init();
		}

		public override void RegisterEvent()
		{
			base.RegisterEvent();
		}

		protected override void OnShow()
		{
			base.OnShow();
			this._doc = (XSingleton<XGame>.singleton.Doc.GetXComponent(XMailDocument.uuID) as XMailDocument);
		}
	}
}