mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
15 lines
338 B
C#
15 lines
338 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
|
|
{
|
|
public RoundStartingEvent(int id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public int Id { get; }
|
|
}
|