GameFramework.QueueingThread.IsLobbyFull C# (CSharp) Method

IsLobbyFull() private method

private IsLobbyFull ( ) : bool
return bool
        private bool IsLobbyFull()
        {
            int totalUserCount = UserServer.Instance.UserProcessScheduler.GetUserCount();
            return totalUserCount >= m_MaxOnlineUserCount;
        }