mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 15:38:52 +03:00
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;
|
|
}
|
|
}
|