Neg_Utils/NEG/UI/UnityUi/Buttons/CloseAllWindows.cs
2024-02-12 21:26:24 +01:00

7 lines
198 B
C#

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