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

14 lines
351 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Interactable.Tools
{
/// <summary>
/// Wrenches bolts, and interacts with things that have been bolted
/// </summary>
[RegisterComponent]
public class WrenchComponent : ToolComponent
{
public override string Name => "Wrench";
}
}