Added terrain.hh
This commit is contained in:
parent
ca0648b42a
commit
8091793b81
19
terrain.hh
Normal file
19
terrain.hh
Normal 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
|
Loading…
Reference in New Issue
Block a user