mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
14 lines
331 B
C#
14 lines
331 B
C#
using EggLink.DanhengServer.Data.Custom;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueTournBuff.json")]
|
|
public class RogueTournBuffExcel : BaseRogueBuffExcel
|
|
{
|
|
public bool IsInHandbook { get; set; }
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueBuffData.TryAdd(GetId(), this);
|
|
}
|
|
} |