2024-06-29 09:49:43 +03:00
|
|
|
namespace Content.Server._White.Discord.GameTicking;
|
2023-04-25 20:11:23 +06:00
|
|
|
|
|
|
|
|
public sealed class RoundEndedEvent : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public int RoundId { get; }
|
|
|
|
|
public TimeSpan RoundDuration { get; }
|
|
|
|
|
|
|
|
|
|
public RoundEndedEvent(int roundId, TimeSpan roundDuration)
|
|
|
|
|
{
|
|
|
|
|
RoundId = roundId;
|
|
|
|
|
RoundDuration = roundDuration;
|
|
|
|
|
}
|
|
|
|
|
}
|