InitInternal() static private method

static private InitInternal ( ) : void
return void
Beispiel #1
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();
 }