Files
OldThink/Content.Server/CrewManifest/CrewManifestViewerComponent.cs

13 lines
407 B
C#
Raw Normal View History

namespace Content.Server.CrewManifest;
[RegisterComponent]
public sealed 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;
}