Neg_Utils/NEG/UI/Area/IArea.cs
2023-01-27 15:31:25 +01:00

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);
}
}