Files
wwdpublic/Content.Shared/Wires/ActivatableUIRequiresPanelComponent.cs
Nemanja 0e145a7ebf fix borg ui mispredict opening (#28305)
move borg ui junk to shared

(cherry picked from commit e4094b1909feaf31ffe8bd140a9d00289213a69b)
2025-01-20 20:45:49 +03:00

18 lines
552 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Wires;
/// <summary>
/// This is used for activatable UIs that require the entity to have a panel in a certain state.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(SharedWiresSystem))]
public sealed partial class ActivatableUIRequiresPanelComponent : Component
{
/// <summary>
/// TRUE: the panel must be open to access the UI.
/// FALSE: the panel must be closed to access the UI.
/// </summary>
[DataField]
public bool RequireOpen = true;
}