aboutsummaryrefslogtreecommitdiffstats
path: root/src/terrain.hpp
blob: 7c214608db908d8678cbb7be11d3a1ba93ebad47 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef TERRAIN_H_
#define TERRAIN_H_

class Terrain {
    public:
        Terrain(int const & x, int const & y, int const & thick);
        ~Terrain();

};

#endif // TERRAIN_H_