mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 20:07:21 +01:00
11 lines
No EOL
192 B
C#
11 lines
No EOL
192 B
C#
using System.Numerics;
|
|
|
|
namespace MareSynchronos.UI.Components.Popup;
|
|
|
|
public interface IPopupHandler
|
|
{
|
|
Vector2 PopupSize { get; }
|
|
bool ShowClose { get; }
|
|
|
|
void DrawContent();
|
|
} |