Neg_Utils/NEG/UI/UnityUi/Buttons/CloseAllWindows.cs

9 lines
218 B
C#

using UnityEngine;
namespace NEG.UI.UnityUi.Buttons
{
public class CloseAllWindows : ButtonReaction
{
protected override void OnClicked() => UiManager.Instance.CurrentArea.CloseAllWindows();
}
}