//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Friday, January 11, 2019
|
//--------------------------------------------------------
|
|
using UnityEngine;
|
using System;
|
|
namespace TableConfig {
|
|
|
public partial class WeekPartyPointConfig : ConfigBase {
|
|
public int Id { get ; private set ; }
|
public string ImageType1 { get ; private set; }
|
public string ImageType2 { get ; private set; }
|
public string name { get ; private set; }
|
|
public override string getKey()
|
{
|
return Id.ToString();
|
}
|
|
public override void Parse() {
|
try
|
{
|
Id=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
|
|
ImageType1 = rawContents[1].Trim();
|
|
ImageType2 = rawContents[2].Trim();
|
|
name = rawContents[3].Trim();
|
}
|
catch (Exception ex)
|
{
|
DebugEx.Log(ex);
|
}
|
}
|
|
}
|
|
}
|