2020-02-26 16:42:12 +01:00
|
|
|
using System;
|
2018-11-25 19:04:49 +01:00
|
|
|
|
|
|
|
|
namespace Content.Client.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IClientGameTicker
|
|
|
|
|
{
|
2020-02-26 16:42:12 +01:00
|
|
|
bool IsGameStarted { get; }
|
|
|
|
|
string ServerInfoBlob { get; }
|
|
|
|
|
bool AreWeReady { get; }
|
|
|
|
|
DateTime StartTime { get; }
|
|
|
|
|
|
2018-11-25 19:04:49 +01:00
|
|
|
void Initialize();
|
2020-02-26 16:42:12 +01:00
|
|
|
event Action InfoBlobUpdated;
|
|
|
|
|
event Action LobbyStatusUpdated;
|
2018-11-25 19:04:49 +01:00
|
|
|
}
|
|
|
|
|
}
|