Re-organize all projects (#4166)
This commit is contained in:
16
Content.Shared/Verbs/HideContextMenuComponent.cs
Normal file
16
Content.Shared/Verbs/HideContextMenuComponent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
#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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user