mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
437 B
C#
18 lines
437 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueMiracleDisplay.json")]
|
|
public class RogueMiracleDisplayExcel : ExcelResource
|
|
{
|
|
public int MiracleDisplayID { get; set; }
|
|
public HashName MiracleName { get; set; } = new();
|
|
|
|
public override int GetId()
|
|
{
|
|
return MiracleDisplayID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueMiracleDisplayData.Add(GetId(), this);
|
|
}
|
|
} |