mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
432 B
C#
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);
|
|
}
|
|
} |