blob: d6cc2c00b22f395ef531b1e57446561a3765a22e (
plain) (
tree)
|
|
#include "cWorldGenerator_Test.h"
#include "cChunk.h"
#include "BlockID.h"
void cWorldGenerator_Test::GenerateTerrain( cChunk* a_Chunk )
{
char* BlockType = a_Chunk->pGetType();
for(int x = 0; x < 16; x++)
{
for(int z = 0; z < 16; z++)
{
for( int y = 1; y < 128; ++y )
{
unsigned int idx = cChunk::MakeIndex(x, y, z);
BlockType[idx] = E_BLOCK_DIRT;
}
}
}
}
void cWorldGenerator_Test::GenerateFoliage( cChunk* a_Chunk )
{
(void)a_Chunk;
}
|