Files
tbd-station-14/Content.Server/CrewManifest/CrewManifestViewerComponent.cs

13 lines
415 B
C#

namespace Content.Server.CrewManifest;
[RegisterComponent]
public sealed partial class CrewManifestViewerComponent : Component
{
/// <summary>
/// If this manifest viewer is unsecure or not. If it is,
/// CCVars.CrewManifestUnsecure being false will
/// not allow this entity to be processed by CrewManifestSystem.
/// </summary>
[DataField("unsecure")] public bool Unsecure;
}