10 lines
383 B
C#
10 lines
383 B
C#
using Content.Server._DV.Objectives.Systems;
|
|
|
|
namespace Content.Server._DV.Objectives.Components;
|
|
|
|
/// <summary>
|
|
/// For nuclear operatives trying to nuke the station. Should only be completed if the correct station is exploded.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(NukeStationConditionSystem))]
|
|
public sealed partial class NukeStationConditionComponent : Component;
|