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