[go: up one dir, main page]

Menu

[948d63]: / hangar.h  Maximize  Restore  History

Download this file

14 lines (11 with data), 180 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#ifndef HANGAR_H
#define HANGAR_H
#include "building.h"
#include "vehicle.h"
class hangar : public building
{
public:
hangar();
void load(vehicle);
};
#endif // HANGAR_H