Files
tbd-station-14/Content.Shared/Verbs/IShowContextMenu.cs
2021-07-16 17:37:09 -07:00

10 lines
183 B
C#

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