10 lines
292 B
C#
10 lines
292 B
C#
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";
|
|
}
|
|
} |