9 lines
164 B
C#
9 lines
164 B
C#
using TanksServer.Models;
|
|
|
|
namespace TanksServer.Services;
|
|
|
|
internal sealed class SpawnQueueProvider
|
|
{
|
|
public ConcurrentQueue<Player> Queue { get; } = new();
|
|
}
|