mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
14 lines
382 B
C#
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";
|
|
}
|
|
}
|