Files
Fishing2Server/Entity/Map/Component/RoomManageComponent.cs

11 lines
264 B
C#

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