FooBar
mech.h
Go to the documentation of this file.
1 #ifndef _mech_h_
2 #define _mech_h_
3 
4 #include "car.h"
5 
6 class Car;
7 
8 class Mech
9 {
10 public:
11  Mech(int armor, int ammo, int power);
12 
14 
15 private:
16  int armor;
17  int ammo;
18  int power;
19 };
20 
21 #endif
int power
Definition: mech.h:18
int armor
Definition: mech.h:16
Car transformToCar()
Definition: mech.cpp:10
Definition: mech.h:8
Definition: car.h:10
int ammo
Definition: mech.h:17
Mech(int armor, int ammo, int power)
Definition: mech.cpp:3