using NEG.UI.Area; using NEG.UI.Window; namespace NEG.UI.WindowSlot { public interface IWindowSlot { IArea ParentArea { get; } void AttachWindow(IWindow window); void DetachWindow(IWindow window); void CloseAllWindows(); } }