11 lines
192 B
C#
11 lines
192 B
C#
![]() |
using System.Numerics;
|
|||
|
|
|||
|
namespace MareSynchronos.UI.Components.Popup;
|
|||
|
|
|||
|
public interface IPopupHandler
|
|||
|
{
|
|||
|
Vector2 PopupSize { get; }
|
|||
|
bool ShowClose { get; }
|
|||
|
|
|||
|
void DrawContent();
|
|||
|
}
|