2019-07-31 15:02:36 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.GameObjects.Components.Interactable.Tools
|
2018-02-06 19:03:36 -06:00
|
|
|
|
{
|
2019-07-31 15:02:36 +02:00
|
|
|
|
[RegisterComponent]
|
2018-02-06 19:03:36 -06:00
|
|
|
|
public class ScrewdriverComponent : ToolComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Tool that interacts with technical components that need to be screwed in
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public override string Name => "Screwdriver";
|
|
|
|
|
|
}
|
2019-07-31 15:02:36 +02:00
|
|
|
|
}
|