namespace Content.Server.Wires; /// /// This is used for activatable UIs that require the entity to have a panel in a certain state. /// [RegisterComponent] public sealed class ActivatableUIRequiresPanelComponent : Component { /// /// TRUE: the panel must be open to access the UI. /// FALSE: the panel must be closed to access the UI. /// [DataField("requireOpen"), ViewVariables(VVAccess.ReadWrite)] public bool RequireOpen = true; }