Files
tbd-station-14/Content.Shared/GameObjects/Components/Drag/DragShadowComponent.cs
2020-10-14 22:48:45 +02:00

18 lines
435 B
C#

using Content.Shared.GameObjects.Verbs;
using Robust.Shared.GameObjects;
using Robust.Shared.Interfaces.GameObjects;
namespace Content.Shared.GameObjects.Components.Drag
{
[RegisterComponent]
public class DragShadowComponent : Component, IShowContextMenu
{
public override string Name => "DragShadow";
public bool ShowContextMenu(IEntity examiner)
{
return false;
}
}
}