diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/FirstPassMwcxHandler.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/UI/FirstPassMwcxHandler.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/FirstPassMwcxHandler.cs b/Client/Assets/Scripts/XMainClient/UI/FirstPassMwcxHandler.cs new file mode 100644 index 00000000..11edbe7b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/FirstPassMwcxHandler.cs @@ -0,0 +1,25 @@ +using System;
+
+namespace XMainClient.UI
+{
+ internal class FirstPassMwcxHandler : DlgHandlerBase
+ {
+ protected override string FileName
+ {
+ get
+ {
+ return "OperatingActivity/FirstPassMwcx";
+ }
+ }
+
+ protected override void Init()
+ {
+ base.Init();
+ }
+
+ protected override void OnShow()
+ {
+ base.OnShow();
+ }
+ }
+}
|