All Classes Functions Typedefs
Types.hpp
1 // ==============================================================
2 // ORBITER AUX LIBRARY: Multiple Vessels Support
3 // http://sf.net/projects/enjomitchsorbit
4 // Part of the ORBITER SDK
5 //
6 // Copyright (C) 2008 Mohd "Computerex" Ali - original concept
7 // Copyright (C) 2011 Szymon "Enjo" Ender - object oriented design,
8 // simplifications, fixes
9 // All rights reserved
10 //
11 // Multiple Vessels Support is free software: you can redistribute it
12 // and/or modify it under the terms of the GNU Lesser General Public
13 // License as published by the Free Software Foundation, either version
14 // 3 of the License, or (at your option) any later version.
15 //
16 // Multiple Vessels Support is distributed in the hope that it will
17 // be useful, but WITHOUT ANY WARRANTY; without even the implied
18 // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 // See the GNU Lesser General Public License for more details.
20 //
21 // You should have received a copy of the GNU Lesser General Public
22 // License along with Multiple Vessels Support. If not, see
23 // <http://www.gnu.org/licenses/>.
24 // ==============================================================
25 
26 #ifndef TYPES_HPP_INCLUDED
27 #define TYPES_HPP_INCLUDED
28 
29 struct BODYPHYS
30 {
31  double mass, radius, sidDay;
32  BODYPHYS()
33  {
34  mass = radius = sidDay = 0;
35  }
36 };
37 
38 struct TGTPARAM
39 {
40  double incl;
41  TGTPARAM()
42  {
43  incl = 0;
44  }
45 };
46 
47 #endif // TYPES_HPP_INCLUDED