12 lines
213 B
C#
12 lines
213 B
C#
|
|
namespace Content.Shared.GameTicking;
|
||
|
|
|
||
|
|
public sealed class RoundStartedEvent : EntityEventArgs
|
||
|
|
{
|
||
|
|
public int RoundId { get; }
|
||
|
|
|
||
|
|
public RoundStartedEvent(int roundId)
|
||
|
|
{
|
||
|
|
RoundId = roundId;
|
||
|
|
}
|
||
|
|
}
|