From 356821032f10ee7076b1cd8ddb9b02a2a5ddfbb1 Mon Sep 17 00:00:00 2001
From: client_Lhy <995049470@qq.com>
Date: 星期一, 24 六月 2019 13:35:01 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
Core/GameEngine/Model/Config/LoadingBackGroundConfig.cs | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/Core/GameEngine/Model/Config/LoadingBackGroundConfig.cs b/Core/GameEngine/Model/Config/LoadingBackGroundConfig.cs
index ca69e8d..f7c6f32 100644
--- a/Core/GameEngine/Model/Config/LoadingBackGroundConfig.cs
+++ b/Core/GameEngine/Model/Config/LoadingBackGroundConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: Fish
-// [ Date ]: Wednesday, May 15, 2019
+// [ Date ]: Monday, June 24, 2019
//--------------------------------------------------------
using System.Collections.Generic;
@@ -16,6 +16,8 @@
public readonly int id;
public readonly int lineId;
public readonly string[] icons;
+ public readonly string[] jobIntroduce1;
+ public readonly string[] jobIntroduce2;
public readonly string levelLimit;
public readonly string name;
public readonly string description;
@@ -36,11 +38,15 @@
icons = tables[2].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
- levelLimit = tables[3];
+ jobIntroduce1 = tables[3].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
- name = tables[4];
+ jobIntroduce2 = tables[4].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
- description = tables[5];
+ levelLimit = tables[5];
+
+ name = tables[6];
+
+ description = tables[7];
}
catch (Exception ex)
{
--
Gitblit v1.8.0