]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/YASim/SimpleJet.cpp
Add support for a turbo prop condition lever.
[flightgear.git] / src / FDM / YASim / SimpleJet.cpp
index 505bef119e1d3da621796768eed9acbc4ea7ee8e..84839965e16cc099cbd6d4edea22704a79cb1152 100644 (file)
@@ -13,6 +13,16 @@ void SimpleJet::setThrust(float thrust)
     _thrust = thrust;
 }
 
+bool SimpleJet::isRunning()
+{
+    return true;
+}
+
+bool SimpleJet::isCranking()
+{
+    return false;
+}
+
 void SimpleJet::getThrust(float* out)
 {
     Math::mul3(_thrust * _throttle, _dir, out);