17 lines
425 B
C#
17 lines
425 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Open window as child of
|
|
/// </summary>
|
|
/// <param name="window"></param>
|
|
/// <param name="data"></param>
|
|
void OpenChildWindow(IWindow window, object data = null);
|
|
}
|
|
} |