Neg_Utils/NEG/UI/UnityUi/Area/AutoWindowOpen.cs
2023-01-27 15:31:25 +01:00

14 lines
280 B
C#

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();
}
}