少年修仙传客户端代码仓库
client_Zxw
2018-10-31 85ea0c104fae8c41965a5bc160ed0490e274a6c6
Core/GameEngine/Model/Config/OSCBillTagAwardConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Monday, March 05, 2018
//    [  Date ]:         Wednesday, October 31, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -11,11 +11,10 @@
    
   public partial class OSCBillTagAwardConfig : ConfigBase {
      public int ID { get ; private set ; }
      public int RangListType { get ; private set ; }
      public int Condition { get ; private set ; }
      public int ID { get ; private set ; }
      public int RangListType { get ; private set ; }
      public int Condition { get ; private set ; }
      public string Gift { get ; private set; } 
      public string Tip { get ; private set; }
      public override string getKey()
        {
@@ -25,15 +24,13 @@
      public override void Parse() {
         try
            {
                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            RangListType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
            Condition=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            RangListType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
            Condition=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            Gift = rawContents[3].Trim();
            Tip = rawContents[4].Trim();
            }
            catch (Exception ex)
            {