11 lines
277 B
C#
11 lines
277 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
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
|
|
{
|
|
}
|