2019-07-31 15:02:36 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.GameObjects.Components.Interactable.Tools
|
2018-02-06 19:03:36 -06:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Tool used for interfacing/hacking into configurable computers
|
|
|
|
|
|
/// </summary>
|
2019-07-31 15:02:36 +02:00
|
|
|
|
[RegisterComponent]
|
2018-02-06 19:03:36 -06:00
|
|
|
|
public class MultitoolComponent : ToolComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
public override string Name => "Multitool";
|
|
|
|
|
|
}
|
2019-07-31 15:02:36 +02:00
|
|
|
|
}
|