Files
crystall-punk-14/Content.Server/GameTicking/Events/RoundStartingEvent.cs

15 lines
338 B
C#
Raw Permalink Normal View History

2022-05-13 00:59:03 -07:00
namespace Content.Server.GameTicking.Events;
/// <summary>
/// Raised at the start of <see cref="GameTicker.StartRound"/>, after round id has been incremented
/// </summary>
public sealed class RoundStartingEvent : EntityEventArgs
{
public RoundStartingEvent(int id)
{
Id = id;
}
public int Id { get; }
}