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