mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-13 15:44:14 +01:00
12 lines
No EOL
185 B
C#
12 lines
No EOL
185 B
C#
using System.Numerics;
|
|
|
|
namespace MareSynchronos.UI.Components.Popup;
|
|
|
|
public interface IPopupHandler
|
|
{
|
|
Vector2 PopupSize { get; }
|
|
|
|
void DrawContent();
|
|
|
|
void OnClose();
|
|
} |