ActivatableUIRequiresAnchorComponent.cs 365 B

12345678910111213
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.UserInterface;
  3. /// <summary>
  4. /// Specifies the entity as requiring anchoring to keep the ActivatableUI open.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class ActivatableUIRequiresAnchorComponent : Component
  8. {
  9. [DataField]
  10. public LocId? Popup = "ui-needs-anchor";
  11. }