From ec36f7122391b3e5d46838e67f64a2d54714626e Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期一, 22 十月 2018 15:54:14 +0800
Subject: [PATCH] 3335 更新lua库
---
Core/GameEngine/Model/ConfigBase.cs | 70 +++++++++++++++++-----------------
1 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/Core/GameEngine/Model/ConfigBase.cs b/Core/GameEngine/Model/ConfigBase.cs
index a4e6a1c..699d2bb 100644
--- a/Core/GameEngine/Model/ConfigBase.cs
+++ b/Core/GameEngine/Model/ConfigBase.cs
@@ -4,43 +4,43 @@
using System.Text.RegularExpressions;
-public interface IConfigPostProcess
-{
- void OnConfigParseCompleted();
+public interface IConfigPostProcess
+{
+ void OnConfigParseCompleted();
}
-public class ConfigBase
-{
- protected string[] rawContents;
- public bool parsed = false;
-
- public ConfigBase()
- {
- }
-
- public virtual string getKey()
- {
- return string.Empty;
- }
-
- public void PostProcess()
- {
- rawContents = null;
- }
-
- public void SetRawContent(string[] _contents)
- {
- this.rawContents = _contents;
- }
-
- public virtual void Parse()
- {
-
- }
-
- protected static bool IsNumeric(string value)
- {
- return !string.IsNullOrEmpty(value) && Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$");
+public class ConfigBase
+{
+ protected string[] rawContents;
+ public bool parsed = false;
+
+ public ConfigBase()
+ {
+ }
+
+ public virtual string getKey()
+ {
+ return string.Empty;
+ }
+
+ public void PostProcess()
+ {
+ rawContents = null;
+ }
+
+ public void SetRawContent(string[] _contents)
+ {
+ this.rawContents = _contents;
+ }
+
+ public virtual void Parse()
+ {
+
+ }
+
+ protected static bool IsNumeric(string value)
+ {
+ return !string.IsNullOrEmpty(value) && Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$");
}
}
--
Gitblit v1.8.0