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