Files
DanhengServer-OpenSource/Common/Data/Excel/GridFightTalentExcel.cs
2025-10-19 12:47:59 +08:00

19 lines
436 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("GridFightTalent.json")]
public class GridFightTalentExcel : ExcelResource
{
public uint ID { get; set; }
public uint Cost { get; set; }
public List<uint> PreTalentIDList { get; set; } = [];
public override int GetId()
{
return (int)ID;
}
public override void Loaded()
{
GameData.GridFightTalentData.TryAdd(ID, this);
}
}