ActiveGameRuleComponent.cs 364 B

12345678
  1. namespace Content.Shared.GameTicking.Components;
  2. /// <summary>
  3. /// Added to game rules before <see cref="GameRuleStartedEvent"/> and removed before <see cref="GameRuleEndedEvent"/>.
  4. /// Mutually exclusive with <seealso cref="EndedGameRuleComponent"/>.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class ActiveGameRuleComponent : Component;