servicepoint-tanks/TanksServer/GameLogic/SpawnQueueProvider.cs

7 lines
138 B
C#
Raw Normal View History

2024-04-10 19:25:45 +02:00
namespace TanksServer.GameLogic;
2024-04-07 20:16:22 +02:00
internal sealed class SpawnQueueProvider
{
public ConcurrentQueue<Player> Queue { get; } = new();
}