using System.Collections.Generic; using NEG.UI.Popup; using NEG.UI.Window; using NEG.UI.WindowSlot; namespace NEG.UI.Area { public interface IArea : ISlotsHolder, IUiElement { /// /// Open window as child of /// /// /// void OpenChildWindow(IWindow window, object data = null); } }