Files
ss14-wl/Corvax/Content.Corvax.Interfaces.Server/IServerJoinQueueManager.cs
2023-10-02 21:46:03 +03:00

11 lines
278 B
C#

namespace Content.Corvax.Interfaces.Server;
public interface IServerJoinQueueManager
{
public bool IsEnabled { get; }
public int PlayerInQueueCount { get; }
public int ActualPlayersCount { get; }
public void Initialize();
public void PostInitialize();
}