diff --git a/terrain.hh b/terrain.hh new file mode 100644 index 0000000..1eee694 --- /dev/null +++ b/terrain.hh @@ -0,0 +1,19 @@ +#ifndef TERRAIN_HH_INCLUDED +#define TERRAIN_HH_INCLUDED + +#include +#include "texture.hh" + +class Terrain { + public: + Terrain(); + ~Terrain(); + void load(); + void render(); + private: + float friction; + Texture texture; + std::string filePath; +}; + +#endif