Files
tbd-station-14/Content.Server/GameObjects/Components/Interactable/Tools/WirecutterComponent.cs
2019-07-31 15:07:54 +02:00

14 lines
372 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Interactable.Tools
{
/// <summary>
/// Tool that can be used for some cutting interactions such as wires or hacking
/// </summary>
[RegisterComponent]
public class WirecutterComponent : ToolComponent
{
public override string Name => "Wirecutter";
}
}