11 lines
223 B
C#
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();
|
|
} |