Add current station time to game lobby (#9665)
Co-authored-by: Kara <lunarautomaton6@gmail.com>
This commit is contained in:
@@ -45,15 +45,17 @@ namespace Content.Shared.GameTicking
|
||||
public bool YouAreReady { get; }
|
||||
// UTC.
|
||||
public TimeSpan StartTime { get; }
|
||||
public TimeSpan RoundStartTimeSpan { get; }
|
||||
public bool Paused { get; }
|
||||
|
||||
public TickerLobbyStatusEvent(bool isRoundStarted, string? lobbySong, string? lobbyBackground, bool youAreReady, TimeSpan startTime, bool paused)
|
||||
public TickerLobbyStatusEvent(bool isRoundStarted, string? lobbySong, string? lobbyBackground, bool youAreReady, TimeSpan startTime, TimeSpan roundStartTimeSpan, bool paused)
|
||||
{
|
||||
IsRoundStarted = isRoundStarted;
|
||||
LobbySong = lobbySong;
|
||||
LobbyBackground = lobbyBackground;
|
||||
YouAreReady = youAreReady;
|
||||
StartTime = startTime;
|
||||
RoundStartTimeSpan = roundStartTimeSpan;
|
||||
Paused = paused;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user