Go to the source code of this file.
 | 
|    | Systems | 
|   | These have to be in this order. 
  | 
|   | 
 | 
| enum   | Systems::System {  
  Systems::Undefined, 
Systems::Propulsion, 
Systems::Hydraulic, 
Systems::Cooling, 
 
  Systems::Oxidizer, 
Systems::Fuel, 
Systems::Electrical, 
Systems::Control, 
 
  Systems::Data, 
Systems::Weapons, 
Systems::Defense, 
Systems::Communication
 
 } | 
|   | 
| enum   | Systems::ComponentType {  
  Systems::Reservoir = 0, 
Systems::PressurePump = 1, 
Systems::DisplacementPump = 2, 
Systems::Hard_Switch = 3, 
 
  Systems::Solenoid_Relay = 4, 
Systems::Optocoupler = 5, 
Systems::Actuator = 6, 
Systems::Intercooler = 7, 
 
  Systems::Sensor_Pressure = 8, 
Systems::Sensor_Flow = 9, 
Systems::Sensor_Quantity = 10, 
Systems::Sensor_Position = 11, 
 
  Systems::Sensor_Temperature = 12, 
Systems::Sensor_Vibration = 13, 
Systems::Sensor_Rotation = 14, 
Systems::Combustion_Chamber = 15, 
 
  Systems::Hardpoint = 16, 
Systems::Sensor_Real = 17, 
Systems::N1_ = 18, 
Systems::N2_ = 19, 
 
  Systems::Motor_ = 20, 
Systems::BlackBoxModule = 21, 
Systems::Igniter_ = 22
 
 } | 
|   | 
| enum   | Systems::Fault : DWORD {  
  Systems::None = 0, 
Systems::NoSignal = 1, 
Systems::Status1 = 2, 
Systems::Status2 = 4, 
 
  Systems::Status3 = 8
 
 } | 
|   |