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