//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Monday, October 15, 2018
|
//--------------------------------------------------------
|
|
using UnityEngine;
|
using System;
|
|
namespace TableConfig {
|
|
|
public partial class HelpInfoConfig : ConfigBase {
|
|
public string title { get ; private set; }
|
public string help { get ; private set; }
|
|
public override string getKey()
|
{
|
return title.ToString();
|
}
|
|
public override void Parse() {
|
try
|
{
|
title = rawContents[0].Trim();
|
|
help = rawContents[1].Trim();
|
}
|
catch (Exception ex)
|
{
|
DebugEx.Log(ex);
|
}
|
}
|
|
}
|
|
}
|