mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
18 lines
375 B
C#
18 lines
375 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("SummonUnitData.json")]
|
|
public class SummonUnitExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; } = 0;
|
|
public string JsonPath { get; set; } = "";
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.SummonUnitData[ID] = this;
|
|
}
|
|
} |