* Ready Indicator in the lobby * Use SessionID instead of Name * Don't show ready state when game is already running * Make Ready List not selectable * -Remove disconnected sessions from Ready -Fix showing ReadyStatus when staying in lobby
22 lines
546 B
C#
22 lines
546 B
C#
using Robust.Shared.Network;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Content.Client.Interfaces
|
|
{
|
|
public interface IClientGameTicker
|
|
{
|
|
bool IsGameStarted { get; }
|
|
string ServerInfoBlob { get; }
|
|
bool AreWeReady { get; }
|
|
DateTime StartTime { get; }
|
|
bool Paused { get; }
|
|
Dictionary<NetSessionId, bool> Ready { get; }
|
|
|
|
void Initialize();
|
|
event Action InfoBlobUpdated;
|
|
event Action LobbyStatusUpdated;
|
|
event Action LobbyReadyUpdated;
|
|
}
|
|
}
|