Files
crystall-punk-14/Content.Shared/GameObjects/Verbs/IShowContextMenu.cs

11 lines
212 B
C#
Raw Normal View History

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