* fix: doorlights supports emagging now + fix emergency light * add todo to PointLightAirlockSystem.cs * tweak: reduce captain armor size * fix: fix wt550 magazine stored rotation * add: new lobby songs * fix: fix lobby music rotation
14 lines
330 B
C#
14 lines
330 B
C#
namespace Content.Server._White.Discord.GameTicking;
|
|
|
|
public sealed class RoundEndedEvent : EntityEventArgs
|
|
{
|
|
public int RoundId { get; }
|
|
public TimeSpan RoundDuration { get; }
|
|
|
|
public RoundEndedEvent(int roundId, TimeSpan roundDuration)
|
|
{
|
|
RoundId = roundId;
|
|
RoundDuration = roundDuration;
|
|
}
|
|
}
|