2022-05-13 00:59:03 -07:00
|
|
|
|
namespace Content.Server.GameTicking.Events;
|
2021-11-22 19:08:27 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-12-25 02:07:12 +01:00
|
|
|
|
/// Raised at the start of <see cref="GameTicker.StartRound"/>, after round id has been incremented
|
2021-11-22 19:08:27 +01:00
|
|
|
|
/// </summary>
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class RoundStartingEvent : EntityEventArgs
|
2021-11-22 19:08:27 +01:00
|
|
|
|
{
|
2022-05-28 23:41:17 -07:00
|
|
|
|
public RoundStartingEvent(int id)
|
|
|
|
|
|
{
|
|
|
|
|
|
Id = id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int Id { get; }
|
2021-11-22 19:08:27 +01:00
|
|
|
|
}
|