Make pointing arrows not show up on the context menu (#2252)

This commit is contained in:
DrSmugleaf
2020-10-14 22:40:59 +02:00
committed by GitHub
parent 5fcd13d0e3
commit d9b3833577
3 changed files with 24 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
using Robust.Shared.Interfaces.GameObjects;
namespace Content.Shared.GameObjects.Verbs
{
public interface IShowContextMenu : IComponent
{
bool ShowContextMenu(IEntity examiner);
}
}