Files
OldThink/Content.Server/GameObjects/Components/Interactable/Tools/MultitoolComponent.cs

14 lines
355 B
C#
Raw Normal View History

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