mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-05-01 20:47:38 +03:00
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);
|
|
}
|
|
}
|