OpenMiner/include/biome.h
2013-02-13 23:10:55 +01:00

20 lines
233 B
C++

#ifndef BIOME_H
#define BIOME_H
class Biome {
public:
Biome(int x, int y, int z, GLuint texture);
~Biome();
void draw();
private:
int m_x;
int m_y;
int m_z;
std::vector<Cube*> m_cubes;
};
#endif // BIOME_H