2013-02-11 21:58:34 +01:00
|
|
|
#ifndef BIOME_H
|
|
|
|
#define BIOME_H
|
|
|
|
|
|
|
|
class Biome {
|
|
|
|
public:
|
2013-02-13 23:10:55 +01:00
|
|
|
Biome(int x, int y, int z, GLuint texture);
|
2013-02-11 21:58:34 +01:00
|
|
|
~Biome();
|
|
|
|
|
|
|
|
void draw();
|
|
|
|
|
|
|
|
private:
|
2013-02-13 23:10:55 +01:00
|
|
|
int m_x;
|
|
|
|
int m_y;
|
|
|
|
int m_z;
|
2013-02-11 21:58:34 +01:00
|
|
|
|
|
|
|
std::vector<Cube*> m_cubes;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BIOME_H
|