| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Wednesday, December 12, 2018 |
| | | // [ Date ]: Thursday, December 20, 2018 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | |
| | | |
| | | public int DanLV { get ; private set ; }
|
| | | public string Name { get ; private set; }
|
| | | public string IconKey { get ; private set; } |
| | | public int LVUpScore { get ; private set ; }
|
| | | public string DayAwardList { get ; private set; } |
| | | public string DanLVAwardList { get ; private set; } |
| | | public string SeasonAwardList { get ; private set; } |
| | | |
| | | public override string getKey() |
| | |
| | |
|
| | | Name = rawContents[1].Trim();
|
| | |
|
| | | LVUpScore=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0; |
| | | IconKey = rawContents[2].Trim();
|
| | |
|
| | | DayAwardList = rawContents[3].Trim();
|
| | | LVUpScore=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0; |
| | |
|
| | | SeasonAwardList = rawContents[4].Trim(); |
| | | DanLVAwardList = rawContents[4].Trim();
|
| | | |
| | | SeasonAwardList = rawContents[5].Trim(); |
| | | } |
| | | catch (Exception ex) |
| | | { |