Files
tbd-station-14/Content.Shared/Verbs/IShowContextMenu.cs
2021-06-09 22:19:39 +02:00

11 lines
200 B
C#

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