Files
DanhengServer-OpenSource/Common/Data/Custom/ChessRogueRoomConfig.cs
2024-05-01 20:37:28 +08:00

23 lines
592 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Data.Custom
{
public class ChessRogueRoomConfig
{
public int EntranceId { get; set; }
public List<int> Groups { get; set; } = [];
public Dictionary<int, ChessRogueRoom> CellGroup { get; set; } = [];
}
public class ChessRogueRoom
{
public List<int> Groups { get; set; } = [];
public bool IsBoss { get; set; } = false;
public bool IsLastBoss { get; set; } = false;
}
}