6
StarHorizon_Public/Content.Shared/Lock/LockedAnchorableComponent.cs
2026-01-18 12:53:36 +03:00

14 lines
376 B
C#

using Content.Shared.Construction.Components;
using Robust.Shared.GameStates;
namespace Content.Shared.Lock;
/// <summary>
/// This is used for a <see cref="AnchorableComponent"/> that cannot be unanchored while locked.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(LockSystem))]
public sealed partial class LockedAnchorableComponent : Component
{
}