| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Monday, October 15, 2018 |
| | | // [ Date ]: Tuesday, February 12, 2019 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | |
| | | |
| | | public partial class HelpInfoConfig : ConfigBase { |
| | | |
| | | public string title { get ; private set; } |
| | | public string help { get ; private set; } |
| | | public string title; |
| | | public string help; |
| | | |
| | | public override string getKey() |
| | | { |
| | | return title.ToString(); |
| | | } |
| | | |
| | | public override void Parse() { |
| | | public override void Parse(string content) { |
| | | try |
| | | { |
| | | title = rawContents[0].Trim(); |
| | | var contents = content.Split('\t'); |
| | | |
| | | title = contents[0]; |
| | | |
| | | help = rawContents[1].Trim(); |
| | | help = contents[1]; |
| | | } |
| | | catch (Exception ex) |
| | | { |