aboutsummaryrefslogtreecommitdiffstats
path: root/src/terrain.hpp
blob: 6d7cf7e889c7735fe5cc996a198afcfaf9e163f3 (plain)
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_