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

11 lines
212 B
C#

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