mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 00:27:13 +08:00
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|