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

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

10 lines
312 B
C#

namespace Content.Server.GameObjects.Components.Interactable.Tools
{
public class CrowbarComponent : ToolComponent
{
/// <summary>
/// Tool that can be used to crowbar things apart, such as deconstructing
/// </summary>
public override string Name => "Crowbar";
}
}