mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
16 lines
514 B
C#
16 lines
514 B
C#
namespace Content.Server.Wires;
|
|
|
|
/// <summary>
|
|
/// This is used for activatable UIs that require the entity to have a panel in a certain state.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
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("requireOpen"), ViewVariables(VVAccess.ReadWrite)]
|
|
public bool RequireOpen = true;
|
|
}
|