9 lines
218 B
C#
9 lines
218 B
C#
using UnityEngine;
|
|
|
|
namespace NEG.UI.UnityUi.Buttons
|
|
{
|
|
public class CloseAllWindows : ButtonReaction
|
|
{
|
|
protected override void OnClicked() => UiManager.Instance.CurrentArea.CloseAllWindows();
|
|
}
|
|
} |