11 lines
373 B
C#
11 lines
373 B
C#
|
|
namespace Content.Server.GameTicking.Rules.Components;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Added to game rules before <see cref="GameRuleStartedEvent"/> and removed before <see cref="GameRuleEndedEvent"/>.
|
|||
|
|
/// Mutually exclusive with <seealso cref="EndedGameRuleComponent"/>.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed partial class ActiveGameRuleComponent : Component
|
|||
|
|
{
|
|||
|
|
}
|