From 45c82c513c67130bb52cb5e7f2f10c957e463cf1 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期六, 27 十月 2018 11:36:55 +0800
Subject: [PATCH] 4340 【前端】支持xlua方便IOS提审
---
Core/GameEngine/Model/Config/WindowSearchConfig.cs | 50 +++++++++++++++++++++++++-------------------------
1 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/Core/GameEngine/Model/Config/WindowSearchConfig.cs b/Core/GameEngine/Model/Config/WindowSearchConfig.cs
index a1f9fbd..61616aa 100644
--- a/Core/GameEngine/Model/Config/WindowSearchConfig.cs
+++ b/Core/GameEngine/Model/Config/WindowSearchConfig.cs
@@ -9,35 +9,35 @@
namespace TableConfig {
- public partial class WindowSearchConfig : ConfigBase {
+ public partial class WindowSearchConfig : ConfigBase {
+
+ public int ID { get ; private set ; }
+ public int Type { get ; private set ; }
+ public int Lv { get ; private set ; }
+ public int TABID { get ; private set ; }
+ public string SelectActive { get ; private set; }
- public int ID { get ; private set ; }
- public int Type { get ; private set ; }
- public int Lv { get ; private set ; }
- public int TABID { get ; private set ; }
- public string SelectActive { get ; private set; }
-
- public override string getKey()
- {
- return ID.ToString();
+ public override string getKey()
+ {
+ return ID.ToString();
}
public override void Parse() {
- try
- {
- ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
-
- Type=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
-
- Lv=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
-
- TABID=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
-
- SelectActive = rawContents[4].Trim();
- }
- catch (Exception ex)
- {
- DesignDebug.Log(ex);
+ try
+ {
+ ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
+
+ Type=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
+
+ Lv=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
+
+ TABID=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
+
+ SelectActive = rawContents[4].Trim();
+ }
+ catch (Exception ex)
+ {
+ DebugEx.Log(ex);
}
}
--
Gitblit v1.8.0