Exemple #1
0
        static void configureGlobalStation()
        {
            GlobalStation station = GlobalStation.createInstance();

            station.librarysInit();
            station.entrance = entrance;
        }
 public static GlobalStation createInstance()
 {
     if (instance == null)
     {
         lock (mutexLocker)
             instance = new GlobalStation();
     }
     return(instance);
 }