Files
DanhengServer-OpenSource/Common/Data/Excel/RogueMagicStoryExcel.cs
2024-10-05 22:40:41 +08:00

19 lines
432 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("RogueMagicStory.json")]
public class RogueMagicStoryExcel : ExcelResource
{
public int StoryID { get; set; }
public bool IsHide { get; set; }
public int UnLockDisplay { get; set; }
public override int GetId()
{
return StoryID;
}
public override void Loaded()
{
GameData.RogueMagicStoryData.Add(StoryID, this);
}
}