24 lines
436 B
C#
24 lines
436 B
C#
using UnityEngine;
|
|
|
|
namespace Test
|
|
{
|
|
|
|
|
|
public class TestDefine : MonoBehaviour
|
|
{
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
|
void Awake()
|
|
{
|
|
Managers.DefineManager.Instance.Init();
|
|
Debug.Log(Managers.DefineManager.Instance);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|