Delta-v/Content.Shared/GameObjects/Verbs/IShowContextMenu.cs

10 lines
195 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.GameObjects.Verbs
{
public interface IShowContextMenu : IComponent
{
bool ShowContextMenu(IEntity examiner);
}
}