| 123456789101112 |
- using Content.Server.Objectives.Systems;
- namespace Content.Server.Objectives.Components;
- /// <summary>
- /// Requires that a target stays alive.
- /// Depends on <see cref="TargetObjectiveComponent"/> to function.
- /// </summary>
- [RegisterComponent, Access(typeof(KeepAliveConditionSystem))]
- public sealed partial class KeepAliveConditionComponent : Component
- {
- }
|