12 lines
185 B
C#
12 lines
185 B
C#
using System.Numerics;
|
|
|
|
namespace MareSynchronos.UI.Components.Popup;
|
|
|
|
public interface IPopupHandler
|
|
{
|
|
Vector2 PopupSize { get; }
|
|
|
|
void DrawContent();
|
|
|
|
void OnClose();
|
|
} |