Files
tbd-station-14/Content.Server/GameObjects/Components/Interactable/Tools/WrenchComponent.cs
clusterfack 059832d324 Adds Basic Tools (#27)
* Basic Tools

* Adds tool prototypes
2018-02-06 19:03:36 -06:00

10 lines
292 B
C#

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