Files
OldThink/Content.Shared/Tools/Components/ToolForcePoweredComponent.cs

11 lines
295 B
C#
Raw Permalink Normal View History

2022-08-31 23:22:25 -04:00
namespace Content.Shared.Tools.Components
{
/// <summary>
/// Tag component to let a tool ignore restrictions on whether devices are powered
/// or not to work.
/// </summary>
[RegisterComponent]
public sealed partial class ToolForcePoweredComponent : Component
2022-08-31 23:22:25 -04:00
{}
}