mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-09-16 07:12:18 +02:00
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
|
|
{
|
|
}
|