Neg_Utils/NEG/UI/Abstraction.cs
2025-10-06 17:31:41 +02:00

11 lines
223 B
C#

using NEG.UI.Popup;
namespace NegUtils.NEG.UI;
internal interface IPopupsHandler
{
internal static IPopupsHandler Instance => instance;
protected static IPopupsHandler instance;
void RefreshPopups();
}