17 lines
357 B
C#
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;
|
|
}
|
|
}
|