Files
DanhengServer-OpenSource/Common/Data/Excel/RogueNousSubStoryExcel.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
528 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("RogueNousSubStory.json")]
public class RogueNousSubStoryExcel : ExcelResource
{
public int StoryID { get; set; }
public int Layer { get; set; }
public int MaxNousValue { get; set; }
public List<int> NextIDList { get; set; } = [];
public int RequireArea { get; set; }
public override int GetId()
{
return StoryID;
}
public override void Loaded()
{
GameData.RogueNousSubStoryData.Add(GetId(), this);
}
}