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

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

10 lines
323 B
C#

namespace Content.Server.GameObjects.Components.Interactable.Tools
{
public class ScrewdriverComponent : ToolComponent
{
/// <summary>
/// Tool that interacts with technical components that need to be screwed in
/// </summary>
public override string Name => "Screwdriver";
}
}