summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XPPTDocument.cs
blob: 43acb57ea0adca8d5d66c459a4db42df83319000 (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
using System;
using XMainClient.UI;
using XMainClient.UI.UICommon;
using XUtliPoolLib;

namespace XMainClient
{
	internal class XPPTDocument : XDocComponent
	{
		public override uint ID
		{
			get
			{
				return XPPTDocument.uuID;
			}
		}

		public new static readonly uint uuID = XSingleton<XCommon>.singleton.XHash("PPTDocument");

		protected override void OnReconnected(XReconnectedEventArgs arg)
		{
		}

		public override void OnDetachFromHost()
		{
			base.OnDetachFromHost();
			DlgBase<PPTDlg, PPTBehaviour>.singleton.UnInit();
		}
	}
}