Files
OldThink/Content.Server/_White/Discord/GameTicking/RoundStartedEvent.cs

12 lines
213 B
C#

namespace Content.Shared.GameTicking;
public sealed class RoundStartedEvent : EntityEventArgs
{
public int RoundId { get; }
public RoundStartedEvent(int roundId)
{
RoundId = roundId;
}
}