Neg_Utils/NEG/UI/UnityUi/Buttons/Reactions/CloseAllWindows.cs
2024-03-03 15:38:40 +01:00

7 lines
208 B
C#

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