]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UFO.hxx
Use the density values from the environment subsystem, to properly handle
[flightgear.git] / src / FDM / UFO.hxx
index aed107e752a786e2ede2b03bdc7c1dc0cda0217b..077332c6c09d34ad788203f73e6af8656094ae33 100644 (file)
@@ -29,7 +29,9 @@
 
 
 class FGUFO: public FGInterface {
-
+    double Throttle;
+    double Aileron;
+    double Elevator;
 public:
     FGUFO( double dt );
     ~FGUFO();
@@ -38,7 +40,7 @@ public:
     void init();
 
     // update position based on inputs, positions, velocities, etc.
-    void update( int multiloop );
+    void update( double dt );
 
 };