Files
2025-08-22 13:07:48 +09:00

11 lines
191 B
C#

using System.Numerics;
namespace LightlessSync.UI.Components.Popup;
public interface IPopupHandler
{
Vector2 PopupSize { get; }
bool ShowClose { get; }
void DrawContent();
}