mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 04:30:57 +01:00
11 lines
278 B
C#
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();
|
|
}
|