Exemplo n.º 1
0
 public UpperLayer()
 {
     this.pid       = PIDManager.GetInstance();
     this.ga        = GlobalArea.GetInstance();
     this.ap        = AircraftPerformance.GetInstance();
     this.activated = false;
 }
Exemplo n.º 2
0
		public UpperLayer ()
		{
			this.pid = PIDManager.GetInstance();
			this.ga = GlobalArea.GetInstance();
			this.ap = AircraftPerformance.GetInstance();
			this.activated = false;
		}
Exemplo n.º 3
0
 public static AircraftPerformance GetInstance()
 {
     if (instance == null)
     {
         instance = new AircraftPerformance();
     }
     return(instance);
 }
Exemplo n.º 4
0
		public static AircraftPerformance GetInstance()
		{
			if(instance == null)
				instance = new AircraftPerformance();
			return instance;
		}