6
StarHorizon_Public/Content.Shared/Lock/LockedWiresPanelComponent.cs
2025-11-11 11:18:56 +03:00

14 lines
354 B
C#

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