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  int armor;
11  int ammo;
12  int power;
13 
14 public:
15  Mech(int armor_, int ammo_, int power_);
17 };
18 
19 #endif