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

14 lines
382 B
C#

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