11 lines
287 B
C#
11 lines
287 B
C#
|
|
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 class ToolForcePoweredComponent : Component
|
||
|
|
{}
|
||
|
|
}
|