diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/XPPTDocument.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XPPTDocument.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XPPTDocument.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XPPTDocument.cs b/Client/Assets/Scripts/XMainClient/XPPTDocument.cs new file mode 100644 index 00000000..43acb57e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XPPTDocument.cs @@ -0,0 +1,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();
+ }
+ }
+}
|