mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
19 lines
492 B
C#
19 lines
492 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightSeasonTalent.json")]
|
|
public class GridFightSeasonTalentExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
public uint Cost { get; set; }
|
|
public uint SeasonID { get; set; }
|
|
public List<uint> PreTalentIDList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ID;
|
|
}
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightSeasonTalentData.TryAdd(ID, this);
|
|
}
|
|
} |