Пример #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();
        }
Пример #3
0
        ///////////////////////////////////////////

        public static void Init()
        {
            if (instance != null)
                Log.Fatal("EngineConsole: Init: instance != null.");
            instance = new EngineConsole();
            instance.InitInternal();
        }
Пример #4
0
 public static void Shutdown()
 {
     if (instance != null)
     {
         instance.ShutdownInternal();
         instance = null;
     }
 }