diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-18 20:18:16 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-18 20:18:16 +0100 |
commit | 76a92a21d11265ad17dffd11101ea87ce5c60e6a (patch) | |
tree | 9e6890042c4157ce1ee85d6e0e0a01a3b8e73efc /source/cWorldGenerator_Test.cpp | |
parent | Thread-safe chunk generation, storage and generator are queried for progress while initializing server (diff) | |
download | cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.tar cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.tar.gz cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.tar.bz2 cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.tar.lz cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.tar.xz cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.tar.zst cuberite-76a92a21d11265ad17dffd11101ea87ce5c60e6a.zip |
Diffstat (limited to 'source/cWorldGenerator_Test.cpp')
-rw-r--r-- | source/cWorldGenerator_Test.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/cWorldGenerator_Test.cpp b/source/cWorldGenerator_Test.cpp index 1ffcdbfbe..7f0c58bb8 100644 --- a/source/cWorldGenerator_Test.cpp +++ b/source/cWorldGenerator_Test.cpp @@ -25,9 +25,11 @@ void cWorldGenerator_Test::GenerateTerrain(int a_ChunkX, int a_ChunkY, int a_Chu -void cWorldGenerator_Test::GenerateFoliage( cChunkPtr & a_Chunk )
+void cWorldGenerator_Test::GenerateFoliage(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
{
- (void)a_Chunk;
+ (void)a_ChunkX;
+ (void)a_ChunkY;
+ (void)a_ChunkZ;
}
|