6
StarHorizon_Public/Content.Shared/UserInterface/ActivatableUIRequiresAnchorComponent.cs
2025-08-13 15:03:01 +03:00

14 lines
365 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.UserInterface;
/// <summary>
/// Specifies the entity as requiring anchoring to keep the ActivatableUI open.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ActivatableUIRequiresAnchorComponent : Component
{
[DataField]
public LocId? Popup = "ui-needs-anchor";
}