Files
tbd-station-14/Content.Client/Interfaces/IClientGameTicker.cs
2020-02-26 16:42:12 +01:00

17 lines
357 B
C#

using System;
namespace Content.Client.Interfaces
{
public interface IClientGameTicker
{
bool IsGameStarted { get; }
string ServerInfoBlob { get; }
bool AreWeReady { get; }
DateTime StartTime { get; }
void Initialize();
event Action InfoBlobUpdated;
event Action LobbyStatusUpdated;
}
}