using NEG.UI.UnityUi.Window; using NEG.UI.Window; using System; using UnityEngine; namespace NEG.UI.Area { public class AutoWindowOpen : MonoBehaviour { [SerializeField] private MonoWindow window; private void Start() => window.Open(); } }