Files

12 lines
213 B
C#
Raw Permalink Normal View History

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