From 8091793b810686ee8e20963ddd0ed8208da22b3c Mon Sep 17 00:00:00 2001 From: Faerbit Date: Mon, 20 Oct 2014 19:09:45 +0200 Subject: [PATCH] Added terrain.hh --- terrain.hh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 terrain.hh 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