]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UFO.hxx
Set the format default to float instead of int.
[flightgear.git] / src / FDM / UFO.hxx
index 8ceecf1357a1d1e63857510d3d6a892ed3714e22..10219cd3dd874cef5b9e03c09466ef60d2594e4d 100644 (file)
@@ -32,6 +32,7 @@ class FGUFO: public FGInterface {
     double Throttle;
     double Aileron;
     double Elevator;
+    double Rudder;
 public:
     FGUFO( double dt );
     ~FGUFO();
@@ -40,7 +41,7 @@ public:
     void init();
 
     // update position based on inputs, positions, velocities, etc.
-    void update( int multiloop );
+    void update( double dt );
 
 };