Neg_Utils/NEG/UI/UnityUi/Area/CloseMainWindowOnBack.cs
2025-10-06 17:31:41 +02:00

16 lines
400 B
C#

using NEG.UI.UnityUi;
using NEG.UI.Window;
using NegUtils.NEG.UI;
namespace NEG.UI.Area
{
public class CloseMainWindowOnBack : MonoController
{
protected override void OnBackUsed(IControllable.BackUsed backUsed)
{
// base.OnBackUsed(backUsed);
// UiManager.Instance.CurrentMainWindow?.Close();
// backUsed.Used = true;
}
}
}