9 lines
243 B
C#
9 lines
243 B
C#
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
|
|
{
|
|
}
|