mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
18 lines
394 B
C#
18 lines
394 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightPortalBuff.json")]
|
|
public class GridFightPortalBuffExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
public bool IfInBook { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightPortalBuffData.TryAdd(ID, this);
|
|
}
|
|
} |