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