Files
crystall-punk-14/Content.Shared/GameObjects/Components/Context/HideContextMenuComponent.cs

17 lines
404 B
C#
Raw Normal View History

using Content.Shared.GameObjects.Verbs;
using Robust.Shared.GameObjects;
2020-11-18 08:16:56 +01:00
namespace Content.Shared.GameObjects.Components.Context
{
[RegisterComponent]
2020-11-18 08:16:56 +01:00
public class HideContextMenuComponent : Component, IShowContextMenu
{
2020-11-18 08:16:56 +01:00
public override string Name => "HideContextMenu";
public bool ShowContextMenu(IEntity examiner)
{
return false;
}
}
}