Files
tbd-station-14/Content.Shared/GameObjects/Components/Context/HideContextMenuComponent.cs
2020-11-18 18:16:56 +11:00

18 lines
448 B
C#

using Content.Shared.GameObjects.Verbs;
using Robust.Shared.GameObjects;
using Robust.Shared.Interfaces.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;
}
}
}