added CVector3D trueSpeedMetersPerSec

This commit is contained in:
Mathew Sutcliffe
2013-03-19 19:05:08 +00:00
parent 611b067a0f
commit c3cf2f7b4d

View File

@@ -11,6 +11,7 @@
#include "blackcore/sim_callbacks.h" #include "blackcore/sim_callbacks.h"
#include "blackcore/vector_geo.h" #include "blackcore/vector_geo.h"
#include "blackcore/vector_3d.h"
#define SHARED_LIBRARY_NAME_FS9 "bb_driver_fs9" #define SHARED_LIBRARY_NAME_FS9 "bb_driver_fs9"
#define SHARED_LIBRARY_NAME_FSX "bb_driver_fsx" #define SHARED_LIBRARY_NAME_FSX "bb_driver_fsx"
@@ -18,7 +19,7 @@
namespace BlackMisc { namespace BlackMisc {
class IContext; class IContext;
} }
@@ -42,6 +43,7 @@ namespace BlackCore {
float pitchDegrees; float pitchDegrees;
float bankDegrees; float bankDegrees;
float groundSpeedKnots; float groundSpeedKnots;
CVector3D trueSpeedMetersPerSec;
}; };
class CAvionicsState class CAvionicsState