Ejemplo n.º 1
0
 public static void Shutdown()
 {
     if (instance != null)
     {
         instance.ShutdownInternal();
         instance = null;
     }
 }
Ejemplo n.º 2
0
        ///////////////////////////////////////////

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

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