13 lines
318 B
C#
13 lines
318 B
C#
namespace Content.Shared.GameTicking;
|
|
|
|
public sealed class RoundEndedEvent : EntityEventArgs
|
|
{
|
|
public int RoundId { get; }
|
|
public TimeSpan RoundDuration { get; }
|
|
|
|
public RoundEndedEvent(int roundId, TimeSpan roundDuration)
|
|
{
|
|
RoundId = roundId;
|
|
RoundDuration = roundDuration;
|
|
}
|
|
}
|