mElite  1.0
An Elite clone based on TextElite by Jan-Philipp Kappmeier and Melanie Schmidt.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
wrappDef.h
Go to the documentation of this file.
1 
7 #pragma once
8 
9 #include <string>
10 
12 enum govTypes {
21 };
22 
24 enum econTypes {
33 };
34 
36 struct System {
38  techLevel(0), population(0), productivity(0), radius(0),
39  systemnumber(257) {}
40 
41  unsigned int systemnumber;
42  std::string name;
43  unsigned int posx, posy;
46  unsigned int techLevel;
47  unsigned int population;
48  unsigned int productivity;
49  unsigned int radius;
50  std::string description;
51 };
52 
55  double price;
56  unsigned int amount;
57 };
58 
60 struct Tradegood {
61  std::string name;
62  std::string unit;
63 };