7 lines
138 B
C#
7 lines
138 B
C#
namespace TanksServer.GameLogic;
|
|
|
|
internal sealed class SpawnQueueProvider
|
|
{
|
|
public ConcurrentQueue<Player> Queue { get; } = new();
|
|
}
|