X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FUFO.hxx;h=32947ab19026c8aaf5dd3d665fa3654df1a55013;hb=1e3f0f0050cd4860b8bf2b6ecb59ba040f8b934f;hp=8ceecf1357a1d1e63857510d3d6a892ed3714e22;hpb=907e2942bb25f1f0146312ef25c897f5c0661e16;p=flightgear.git diff --git a/src/FDM/UFO.hxx b/src/FDM/UFO.hxx index 8ceecf135..32947ab19 100644 --- a/src/FDM/UFO.hxx +++ b/src/FDM/UFO.hxx @@ -3,7 +3,7 @@ // Written by Curtis Olson, started October 1999. // Slightly modified from MagicCarpet.hxx by Jonathan Polley, April 2002 // -// Copyright (C) 1999-2002 Curtis L. Olson - curt@flightgear.org +// Copyright (C) 1999-2002 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 @@ -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 ); };