Files
DanhengServer-OpenSource/Common/Data/Excel/RogueNousMainStoryExcel.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

21 lines
513 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("RogueNousMainStory.json")]
public class RogueNousMainStoryExcel : ExcelResource
{
public int StoryID { get; set; }
public int Layer { get; set; }
public int RogueNPCID { get; set; }
public int QuestID { get; set; }
public int StoryGroup { get; set; }
public override int GetId()
{
return StoryID;
}
public override void Loaded()
{
GameData.RogueNousMainStoryData.Add(GetId(), this);
}
}