2025-07-13 08:56:33 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public class TestDefine : MonoBehaviour
|
|
|
|
{
|
|
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
2025-07-14 11:42:02 +08:00
|
|
|
void Awake()
|
2025-07-13 08:56:33 +08:00
|
|
|
{
|
|
|
|
Managers.DefineManager.Instance.Init();
|
|
|
|
Debug.Log(Managers.DefineManager.Instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|