mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
19 lines
437 B
C#
19 lines
437 B
C#
namespace KianaBH.Data.Excel;
|
|
|
|
[ResourceEntity("GodWarTalentData.json")]
|
|
public class GodWarTalentDataExcel : ExcelResource
|
|
{
|
|
public uint TalentID { get; set; }
|
|
public uint MaxLevel { get; set; }
|
|
public List<uint> TaleIDList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)TalentID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GodWarTalentData.Add(GetId(), this);
|
|
}
|
|
} |