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