10 lines
312 B
C#
10 lines
312 B
C#
namespace Content.Server.GameObjects.Components.Interactable.Tools
|
|
{
|
|
public class CrowbarComponent : ToolComponent
|
|
{
|
|
/// <summary>
|
|
/// Tool that can be used to crowbar things apart, such as deconstructing
|
|
/// </summary>
|
|
public override string Name => "Crowbar";
|
|
}
|
|
} |