25 lines
487 B
C#
25 lines
487 B
C#
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;
|
|
}
|
|
}
|
|
}
|