All Classes Functions
Engine.hpp
1 #ifndef ENGINE_H
2 #define ENGINE_H
3 
4 struct Engine
5 {
6  Engine()
7  {
8  F = isp = ThrAngle = 0;
9  }
10  double F, isp, ThrAngle;
11 };
12 
13 #endif // ENGINE_H