Files
DanhengServer-OpenSource/Common/Data/Excel/BattleTargetConfigExcel.cs
2025-08-15 20:17:39 +08:00

18 lines
387 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("BattleTargetConfig.json")]
public class BattleTargetConfigExcel : ExcelResource
{
public int ID { get; set; }
public int TargetParam { get; set; }
public override int GetId()
{
return ID;
}
public override void Loaded()
{
GameData.BattleTargetConfigData.TryAdd(ID, this);
}
}