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

11 lines
200 B
C#

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