14 lines
280 B
C#
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();
|
|
}
|
|
} |