]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/globals.hxx
Turn back to default lighting when specular-highlight gets disabled
[flightgear.git] / src / Main / globals.hxx
index 2621fe2db033c5c1fc422d3acd6af76260f8b260..827debbcabcdc841c9405a7d6aa9c9eb5b242b78 100644 (file)
@@ -59,6 +59,8 @@ class SGRoute;
 class SGTime;
 class SGSoundMgr;
 
+class FGAirportList;
+class FGRunwayList;
 class FGAIMgr;
 class FGATCMgr;
 class FGATCDisplay;
@@ -134,6 +136,12 @@ private:
     // sound manager
     SGSoundMgr *soundmgr;
 
+    // Simple Airport List
+    FGAirportList *airports;
+
+    // Runway List
+    FGRunwayList *runways;
+
     // ATC manager
     FGATCMgr *ATC_mgr;
 
@@ -240,6 +248,12 @@ public:
     inline SGRoute *get_route() const { return route; }
     inline void set_route( SGRoute *r ) { route = r; }
 
+    inline FGAirportList *get_airports() const { return airports; }
+    inline void set_airports( FGAirportList *a ) {airports = a; }
+
+    inline FGRunwayList *get_runways() const { return runways; }
+    inline void set_runways( FGRunwayList *r ) {runways = r; }
+
     inline FGATCMgr *get_ATC_mgr() const { return ATC_mgr; }
     inline void set_ATC_mgr( FGATCMgr *a ) {ATC_mgr = a; }