Files
crystall-punk-14/Content.Server/GameObjects/Components/Interactable/Tools/WrenchComponent.cs

10 lines
292 B
C#
Raw Normal View History

namespace Content.Server.GameObjects.Components.Interactable.Tools
{
/// <summary>
/// Wrenches bolts, and interacts with things that have been bolted
/// </summary>
public class WrenchComponent : ToolComponent
{
public override string Name => "Wrench";
}
}