Files
tbd-station-14/Content.Shared/Verbs/HideContextMenuComponent.cs
2021-07-16 17:37:09 -07:00

16 lines
339 B
C#

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