RoundStartingEvent.cs 338 B

1234567891011121314
  1. namespace Content.Server.GameTicking.Events;
  2. /// <summary>
  3. /// Raised at the start of <see cref="GameTicker.StartRound"/>, after round id has been incremented
  4. /// </summary>
  5. public sealed class RoundStartingEvent : EntityEventArgs
  6. {
  7. public RoundStartingEvent(int id)
  8. {
  9. Id = id;
  10. }
  11. public int Id { get; }
  12. }