Files

17 lines
319 B
C#
Raw Permalink Normal View History

2025-07-08 09:42:27 +08:00
using Logging;
using UnityEngine;
public class Program : MonoBehaviour
{
private void Awake()
{
UnityLogger.Init();
Managers.DefineManager.Instance.Init();
Base.UIInputControl.Instance.isGlobal = true;
2025-07-08 09:42:27 +08:00
}
private void Start()
{
Debug.Log("Starting game...");
}
}