12 lines
261 B
C#
12 lines
261 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
|
|
{
|
|
void OpenChildWindow(IWindow window, object data = null);
|
|
}
|
|
} |