servicepoint-tanks/TanksServer/Services/SpawnQueueProvider.cs
2024-04-07 20:16:22 +02:00

9 lines
164 B
C#

using TanksServer.Models;
namespace TanksServer.Services;
internal sealed class SpawnQueueProvider
{
public ConcurrentQueue<Player> Queue { get; } = new();
}