Clean up client game ticker status code.

Fixes #495
This commit is contained in:
Pieter-Jan Briers
2020-02-26 16:42:12 +01:00
parent 0adc134cd4
commit 0e6b55de66
14 changed files with 484 additions and 468 deletions

View File

@@ -1,10 +1,16 @@
using Robust.Shared.Timing;
using System;
namespace Content.Client.Interfaces
{
public interface IClientGameTicker
{
bool IsGameStarted { get; }
string ServerInfoBlob { get; }
bool AreWeReady { get; }
DateTime StartTime { get; }
void Initialize();
void FrameUpdate(FrameEventArgs FrameEventArgs);
event Action InfoBlobUpdated;
event Action LobbyStatusUpdated;
}
}