From bc86a576b6aa4e573873eaaaba178f0a0575dcc0 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期三, 31 十月 2018 14:23:14 +0800
Subject: [PATCH] 4492 【1.2】全民冲榜删除无用字段
---
Core/GameEngine/Model/Config/OSCBillRankAwardConfig.cs | 29 +++++++++++++----------------
1 files changed, 13 insertions(+), 16 deletions(-)
diff --git a/Core/GameEngine/Model/Config/OSCBillRankAwardConfig.cs b/Core/GameEngine/Model/Config/OSCBillRankAwardConfig.cs
index 1334cb3..8c4971a 100644
--- a/Core/GameEngine/Model/Config/OSCBillRankAwardConfig.cs
+++ b/Core/GameEngine/Model/Config/OSCBillRankAwardConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: 绗簩涓栫晫
-// [ Date ]: Monday, March 05, 2018
+// [ Date ]: Wednesday, October 31, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -11,12 +11,11 @@
public partial class OSCBillRankAwardConfig : ConfigBase {
- public int ID { get ; private set ; }
- public int RangListType { get ; private set ; }
- public int RankA { get ; private set ; }
- public int RankB { get ; private set ; }
+ public int ID { get ; private set ; }
+ public int RangListType { get ; private set ; }
+ public int RankA { get ; private set ; }
+ public int RankB { get ; private set ; }
public string Gift { get ; private set; }
- public string Tip { get ; private set; }
public override string getKey()
{
@@ -26,17 +25,15 @@
public override void Parse() {
try
{
- ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
-
- RangListType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
-
- RankA=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
-
- RankB=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
-
+ ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
+
+ RangListType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
+
+ RankA=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
+
+ RankB=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
+
Gift = rawContents[4].Trim();
-
- Tip = rawContents[5].Trim();
}
catch (Exception ex)
{
--
Gitblit v1.8.0