]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/globals.hxx
Melchior FRANZ:
[flightgear.git] / src / Main / globals.hxx
index 3077e750e6bff38150693f5ef8d3287f443be90d..6af7367660fd8d81f043032cd8750f3061c49212 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Written by Curtis Olson, started July 2000.
 //
-// Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
+// Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -42,6 +42,8 @@ SG_USING_STD( string );
 typedef vector<string> string_list;
 
 
+#include "renderer.hxx"
+
 // Forward declarations
 
 // This file is included, directly or indirectly, almost everywhere in
@@ -97,6 +99,7 @@ class FGGlobals
 
 private:
 
+    FGRenderer *renderer;
     SGSubsystemMgr *subsystem_mgr;
     SGEventMgr *event_mgr;
 
@@ -217,6 +220,8 @@ public:
     FGGlobals();
     virtual ~FGGlobals();
 
+    virtual FGRenderer *get_renderer () const;
+
     virtual SGSubsystemMgr *get_subsystem_mgr () const;
 
     virtual SGSubsystem *get_subsystem (const char * name);