Delta-v/Content.Shared/GameObjects/Components/Context/HideContextMenuComponent.cs

18 lines
421 B
C#

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