1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef TERRAIN_H_ #define TERRAIN_H_ class Terrain { public: Terrain(); Terrain(int const & x, int const & y, int const & thick); ~Terrain(); void draw() const ; int x; int y; int thick; }; #endif // TERRAIN_H_