Files
DanhengServer-OpenSource/Common/Data/Custom/ChessRogueRoomConfig.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

24 lines
847 B
C#

using EggLink.DanhengServer.Enums.Rogue;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace EggLink.DanhengServer.Data.Custom;
public class ChessRogueRoomConfig
{
public int EntranceId { get; set; }
public int RoomPrefix { get; set; }
[JsonConverter(typeof(StringEnumConverter))]
public RogueDLCBlockTypeEnum BlockType { get; set; }
public int AnchorGroup { get; set; }
public int AnchorId { get; set; }
public List<int> DefaultLoadBasicGroup { get; set; } = [];
public List<int> DefaultLoadGroup { get; set; } = [];
public List<int> DoubleEventLoadGroup { get; set; } = []; // override DefaultLoadGroup
public List<int> SelectEventLoadGroup { get; set; } = []; // override DefaultLoadGroup
public List<int> SubMonsterGroup { get; set; } = []; // combine with DefaultLoadGroup
}