13 lines
361 B
C#
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
|
|
{
|
|
}
|