summaryrefslogtreecommitdiffstats
path: root/src/Generating/TestRailsGen.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-12-03 13:07:23 +0100
committerMattes D <github@xoft.cz>2015-12-03 13:07:23 +0100
commit3fb356648453169758a9f5649f0ed4c5925d911f (patch)
tree57c90ff51aaeac4b1c2e05538a9f486da0a19f28 /src/Generating/TestRailsGen.h
parentMerge pull request #2696 from Gargaj/breeding (diff)
parentChanged Nether defaults to use PieceStructures. (diff)
downloadcuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.gz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.bz2
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.lz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.xz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.zst
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.zip
Diffstat (limited to 'src/Generating/TestRailsGen.h')
-rw-r--r--src/Generating/TestRailsGen.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/Generating/TestRailsGen.h b/src/Generating/TestRailsGen.h
deleted file mode 100644
index 88e38b368..000000000
--- a/src/Generating/TestRailsGen.h
+++ /dev/null
@@ -1,47 +0,0 @@
-
-// TestRailsGen.h
-
-// Declares the cTestRailsGen class representing the testing rails generator
-
-
-
-
-
-#pragma once
-
-#include "GridStructGen.h"
-#include "PrefabPiecePool.h"
-
-
-
-
-
-class cTestRailsGen :
- public cGridStructGen
-{
- typedef cGridStructGen super;
-
-public:
- cTestRailsGen(int a_Seed, int a_GridSize, int a_MaxOffset, int a_MaxDepth, int a_MaxSize);
-
-protected:
- class cTestRails; // fwd: TestRailsGen.cpp
-
-
- /** The noise used for generating random numbers */
- cNoise m_Noise;
-
- /** Maximum depth of the generator tree */
- int m_MaxDepth;
-
- /** Maximum size, in X / Z blocks, of the structure (radius from the origin) */
- int m_MaxSize;
-
-
- // cGridStructGen overrides:
- virtual cStructurePtr CreateStructure(int a_GridX, int a_GridZ, int a_OriginX, int a_OriginZ) override;
-} ;
-
-
-
-