mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Predicted gas pumps I wanted to try out atmos and first thing I found. * a * Remove details range (cherry picked from commit 9365e3a99bad75f7426fcc07fa6f406ba23e9620)
14 lines
365 B
C#
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";
|
|
}
|