Neg_Utils/NEG/UI/WindowSlot/IWindowSlot.cs
2023-01-27 15:31:25 +01:00

14 lines
320 B
C#

using NEG.UI.Area;
using NEG.UI.Window;
namespace NEG.UI.WindowSlot
{
public interface IWindowSlot
{
bool OpenWindowAsMain { get; }
ISlotsHolder ParentHolder { get; }
void AttachWindow(IWindow window);
void DetachWindow(IWindow window);
void CloseAllWindows();
}
}