10 lines
206 B
C#
10 lines
206 B
C#
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Content.Shared.GameObjects.Verbs
|
|
{
|
|
public interface IShowContextMenu : IComponent
|
|
{
|
|
bool ShowContextMenu(IEntity examiner);
|
|
}
|
|
}
|