Adds Basic Tools (#27)

* Basic Tools

* Adds tool prototypes
This commit is contained in:
clusterfack
2018-02-06 19:03:36 -06:00
committed by GitHub
parent 1452502fbf
commit 059832d324
18 changed files with 308 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
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";
}
}