From adeae8c5d6bb0c8b3f3ca0212cd3d4f34c31e15a Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期五, 21 九月 2018 21:18:25 +0800
Subject: [PATCH] 3791 【前端】新增符印塔通关某一层自动退出字段

---
 Core/GameEngine/Model/Config/RuneTowerFloorConfig.cs |   53 ++++++++++++++++++++++++++++-------------------------
 1 files changed, 28 insertions(+), 25 deletions(-)

diff --git a/Core/GameEngine/Model/Config/RuneTowerFloorConfig.cs b/Core/GameEngine/Model/Config/RuneTowerFloorConfig.cs
index 413fa5a..758406e 100644
--- a/Core/GameEngine/Model/Config/RuneTowerFloorConfig.cs
+++ b/Core/GameEngine/Model/Config/RuneTowerFloorConfig.cs
@@ -1,14 +1,14 @@
-锘�//--------------------------------------------------------
-//    [Author]:			绗簩涓栫晫
-//    [  Date ]:		   Friday, August 10, 2018
-//--------------------------------------------------------
-
-using UnityEngine;
-using System;
-
-namespace TableConfig {
-
-    
+锘�//--------------------------------------------------------
+//    [Author]:			绗簩涓栫晫
+//    [  Date ]:		   Friday, September 21, 2018
+//--------------------------------------------------------
+
+using UnityEngine;
+using System;
+
+namespace TableConfig {
+
+    
 	public partial class RuneTowerFloorConfig : ConfigBase {
 
 		public int ID { get ; private set ; }
@@ -24,13 +24,14 @@
 		public int UnLockCompose { get ; private set ; }
 		public int RuneDrop { get ; private set ; }
 		public int Fixed { get ; private set ; }
-
+		public int AutoExit { get ; private set ; }
+
 		public override string getKey()
         {
             return ID.ToString();
-        }
-
-		public override void Parse() {
+        }
+
+		public override void Parse() {
 			try
             {
                 ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
@@ -58,17 +59,19 @@
 				RuneDrop=IsNumeric(rawContents[11]) ? int.Parse(rawContents[11]):0; 
 			
 				Fixed=IsNumeric(rawContents[12]) ? int.Parse(rawContents[12]):0; 
+			
+				AutoExit=IsNumeric(rawContents[13]) ? int.Parse(rawContents[13]):0; 
             }
             catch (Exception ex)
             {
                 DebugEx.Log(ex);
-            }
-		}
-	
-	}
-
-}
-
-
-
-
+            }
+		}
+	
+	}
+
+}
+
+
+
+

--
Gitblit v1.8.0