Neg_Utils/NEG/UI/UnityUi/Buttons/Reactions/OpenAsCurrentMainChild.cs
2025-10-06 17:31:41 +02:00

17 lines
476 B
C#

using NEG.UI.UnityUi.Window;
using NEG.UI.Window;
using UnityEngine;
namespace NEG.UI.UnityUi.Buttons.Reactions
{
public class OpenAsCurrentMainChild : ButtonReaction
{
[SerializeField] private MonoWindow windowToOpen;
// protected override void OnClicked() => UiManager.Instance.CurrentMainWindow.OpenAsChild(windowToOpen);
protected override void OnClicked()
{
throw new System.NotImplementedException();
}
}
}