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