示例#1
0
 public static void Shutdown()
 {
     if (instance != null)
     {
         instance.ShutdownInternal();
         instance = null;
     }
 }
示例#2
0
        ///////////////////////////////////////////

        public static void Init()
        {
            if (instance != null)
            {
                Log.Fatal("EngineConsole: Init: instance != null.");
            }
            instance = new EngineConsole();
            instance.InitInternal();
        }
        ///////////////////////////////////////////

        public static void Init()
        {
            if (instance != null)
                Log.Fatal("EngineConsole: Init: instance != null.");
            instance = new EngineConsole();
            instance.InitInternal();
        }
 public static void Shutdown()
 {
     if (instance != null)
     {
         instance.ShutdownInternal();
         instance = null;
     }
 }