1
0

KeepAliveConditionComponent.cs 361 B

123456789101112
  1. using Content.Server.Objectives.Systems;
  2. namespace Content.Server.Objectives.Components;
  3. /// <summary>
  4. /// Requires that a target stays alive.
  5. /// Depends on <see cref="TargetObjectiveComponent"/> to function.
  6. /// </summary>
  7. [RegisterComponent, Access(typeof(KeepAliveConditionSystem))]
  8. public sealed partial class KeepAliveConditionComponent : Component
  9. {
  10. }