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