Files
tbd-station-14/Content.Shared/Verbs/HideContextMenuComponent.cs
2021-06-09 22:19:39 +02:00

17 lines
356 B
C#

#nullable enable
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;
}
}
}