Added terrain.hh

This commit is contained in:
Faerbit 2014-10-20 19:09:45 +02:00
parent ca0648b42a
commit 8091793b81

19
terrain.hh Normal file
View File

@ -0,0 +1,19 @@
#ifndef TERRAIN_HH_INCLUDED
#define TERRAIN_HH_INCLUDED
#include <string>
#include "texture.hh"
class Terrain {
public:
Terrain();
~Terrain();
void load();
void render();
private:
float friction;
Texture texture;
std::string filePath;
};
#endif