//--------------------------------------------------------
|
// [Author]: YYL
|
// [ Date ]: 2025年11月11日
|
//--------------------------------------------------------
|
|
using System.Collections.Generic;
|
using System;
|
using UnityEngine;
|
using LitJson;
|
|
public partial class RandomNameConfig : ConfigBase<int, RandomNameConfig>
|
{
|
static RandomNameConfig()
|
{
|
// 访问过静态构造函数
|
visit = true;
|
}
|
|
public int ID;
|
public string Job;
|
public string RandomName1;
|
public string RandomName2;
|
|
public override int LoadKey(string _key)
|
{
|
int key = GetKey(_key);
|
return key;
|
}
|
|
public override void LoadConfig(string input)
|
{
|
try {
|
string[] tables = input.Split('\t');
|
int.TryParse(tables[0],out ID);
|
|
Job = tables[1];
|
|
RandomName1 = tables[2];
|
|
RandomName2 = tables[3];
|
}
|
catch (Exception exception)
|
{
|
Debug.LogError(exception);
|
}
|
}
|
}
|