]> git.mxchange.org Git - flightgear.git/blobdiff - FDM/LaRCsim.hxx
LaRCsim maintains all it's variables internally. I had been copying all of
[flightgear.git] / FDM / LaRCsim.hxx
index 6d11a3e787351194dba07b30cc14a19f2b0e6c66..e4f2c1877bd99d5e02f9acdda4115561ec3afb9f 100644 (file)
 int fgLaRCsimInit(double dt);
 
 // update position based on inputs, positions, velocities, etc.
-int fgLaRCsimUpdate(fgFLIGHT& f, int multiloop);
+int fgLaRCsimUpdate(FGState& f, int multiloop);
 
-// Convert from the fgFLIGHT struct to the LaRCsim generic_ struct
-int fgFlight_2_LaRCsim (fgFLIGHT& f);
+// Convert from the FGState struct to the LaRCsim generic_ struct
+int FGState_2_LaRCsim (FGState& f);
 
-// Convert from the LaRCsim generic_ struct to the fgFLIGHT struct
-int fgLaRCsim_2_Flight (fgFLIGHT& f);
+// Convert from the LaRCsim generic_ struct to the FGState struct
+int fgLaRCsim_2_FGState (FGState& f);
 
 
 #endif // _LARCSIM_HXX
 
 
 // $Log$
+// Revision 1.4  1998/12/05 15:54:09  curt
+// Renamed class fgFLIGHT to class FGState as per request by JSB.
+//
 // Revision 1.3  1998/12/03 01:16:38  curt
 // Converted fgFLIGHT to a class.
 //