Files
tbd-station-14/Content.Shared/GameObjects/Verbs/IShowContextMenu.cs

10 lines
206 B
C#

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