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