namespace Content.Server.GameTicking.Events; /// /// Raised at the start of , after round id has been incremented /// public sealed class RoundStartingEvent : EntityEventArgs { public RoundStartingEvent(int id) { Id = id; } public int Id { get; } }