1
0

LockedWiresPanelComponent.cs 354 B

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