6
StarHorizon_Public/Content.Server/Objectives/Components/KeepAliveConditionComponent.cs
2025-11-03 10:15:18 +03:00

13 lines
361 B
C#

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
{
}