X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FScenery%2Fscenery.hxx;h=4d506e4b709b1ea4877c2216197ecc9a6e1e0c27;hb=8dcf08c965ee6386f6fa1a0d8871906fa7faf989;hp=aa9e111032fe9f73fba10352ebd98eb0f4c1f3eb;hpb=c162577340cbe2d3696bccd676acd5fe82218fe8;p=flightgear.git diff --git a/src/Scenery/scenery.hxx b/src/Scenery/scenery.hxx index aa9e11103..4d506e4b7 100644 --- a/src/Scenery/scenery.hxx +++ b/src/Scenery/scenery.hxx @@ -65,6 +65,7 @@ class FGScenery : public FGSubsystem { ssgBranch *terrain_branch; ssgRoot *gnd_lights_root; ssgRoot *rwy_lights_root; + ssgRoot *taxi_lights_root; ssgBranch *models_branch; ssgBranch *aircraft_branch; @@ -111,6 +112,13 @@ public: rwy_lights_root = r; } + inline ssgRoot *get_taxi_lights_root () const { + return taxi_lights_root; + } + inline void set_taxi_lights_root (ssgRoot *r) { + taxi_lights_root = r; + } + inline ssgBranch *get_models_branch () const { return models_branch; }