//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Tuesday, February 12, 2019
|
//--------------------------------------------------------
|
|
using UnityEngine;
|
using System;
|
|
namespace TableConfig {
|
|
|
public partial class BossRebornConfig : ConfigBase {
|
|
public int Id;
|
public string Description;
|
public int jump;
|
public int order;
|
|
public override string getKey()
|
{
|
return Id.ToString();
|
}
|
|
public override void Parse(string content) {
|
try
|
{
|
var contents = content.Split('\t');
|
|
int.TryParse(contents[0],out Id);
|
|
Description = contents[1];
|
|
int.TryParse(contents[2],out jump);
|
|
int.TryParse(contents[3],out order);
|
}
|
catch (Exception ex)
|
{
|
DebugEx.Log(ex);
|
}
|
}
|
|
}
|
|
}
|
|
|
|
|