25 lines
487 B
C#
Raw Normal View History

2026-05-06 15:07:56 +02:00
using UnityEngine;
namespace DuloGames.UI
{
public class Demo_CharacterCreateMgr : MonoBehaviour
{
private static Demo_CharacterCreateMgr m_Mgr;
public static Demo_CharacterCreateMgr instance
{
get { return m_Mgr; }
}
protected void Awake()
{
// Save a reference to the instance
m_Mgr = this;
}
protected void OnDestroy()
{
m_Mgr = null;
}
}
}