Exemplo n.º 1
0
    public static UIRootMgr Instance()
    {
        if (instance == null)
        {
            instance = MonoSingletonProperty <UIRootMgr> .Instance();
        }

        return(instance);
    }
Exemplo n.º 2
0
        public static LangSetting Instance()
        {
            if (instance == null)
            {
                instance = MonoSingletonProperty <LangSetting> .Instance();

                instance.Init();
            }

            return(instance);
        }