Files
DanhengServer-OpenSource/Common/Data/Excel/RogueAeonExcel.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

22 lines
525 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("RogueAeon.json")]
public class RogueAeonExcel : ExcelResource
{
public int AeonID { get; set; }
public int RogueVersion { get; set; }
public int RogueBuffType { get; set; }
public int BattleEventBuffGroup { get; set; }
public int BattleEventEnhanceBuffGroup { get; set; }
public override int GetId()
{
return AeonID;
}
public override void Loaded()
{
GameData.RogueAeonData.Add(GetId(), this);
}
}