summaryrefslogtreecommitdiffstats
path: root/source/cWorldGenerator_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cWorldGenerator_Test.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/source/cWorldGenerator_Test.cpp b/source/cWorldGenerator_Test.cpp
deleted file mode 100644
index b7257f35f..000000000
--- a/source/cWorldGenerator_Test.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "cWorldGenerator_Test.h"
-#include "BlockID.h"
-
-
-
-
-
-void cWorldGenerator_Test::GenerateTerrain(int a_ChunkX, int a_ChunkY, int a_ChunkZ, BLOCKTYPE * a_BlockData)
-{
- memset(a_BlockData, E_BLOCK_DIRT, cChunkDef::NumBlocks);
- for(int x = 0; x < cChunkDef::Width; x++)
- {
- for(int z = 0; z < cChunkDef::Width; z++)
- {
- a_BlockData[MakeIndex(x, 0, z)] = E_BLOCK_BEDROCK;
- }
- }
-}
-
-
-
-
-
-void cWorldGenerator_Test::GenerateFoliage(int a_ChunkX, int a_ChunkY, int a_ChunkZ)
-{
- (void)a_ChunkX;
- (void)a_ChunkY;
- (void)a_ChunkZ;
-}
-
-
-
-