Files

14 lines
330 B
C#
Raw Permalink Normal View History

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;
}
}