Files
Fishing2Server/Entity/Map/Component/RoomManageComponent.cs
2025-09-09 22:49:09 +08:00

13 lines
296 B
C#

using Fantasy.Entitas;
namespace NB.Map;
public class RoomManageComponent : Entity
{
public readonly Dictionary<int, MapRoom> Rooms = new();
public readonly PriorityQueue<int, int> FreeIds = new();
public readonly HashSet<int> InUseID = new();
public string TestRoomCode;
}