summaryrefslogtreecommitdiffstats
path: root/src/Generating/RainbowRoadsGen.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-11-11 10:32:42 +0100
committerMattes D <github@xoft.cz>2015-12-01 10:35:07 +0100
commitb8fbba5eb92cda32b13d65f3704adf778da82f38 (patch)
tree0c6e8f47ae152e5ffade6f0a7457505101764753 /src/Generating/RainbowRoadsGen.h
parentMerge pull request #2696 from Gargaj/breeding (diff)
downloadcuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar
cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.gz
cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.bz2
cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.lz
cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.xz
cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.zst
cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.zip
Diffstat (limited to '')
-rw-r--r--src/Generating/RainbowRoadsGen.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/Generating/RainbowRoadsGen.h b/src/Generating/RainbowRoadsGen.h
deleted file mode 100644
index 75383e223..000000000
--- a/src/Generating/RainbowRoadsGen.h
+++ /dev/null
@@ -1,47 +0,0 @@
-
-// RainbowRoadsGen.h
-
-// Declares the cRainbowRoadsGen class representing the underwater base generator
-
-
-
-
-
-#pragma once
-
-#include "GridStructGen.h"
-#include "PrefabPiecePool.h"
-
-
-
-
-
-class cRainbowRoadsGen :
- public cGridStructGen
-{
- typedef cGridStructGen super;
-
-public:
- cRainbowRoadsGen(int a_Seed, int a_GridSize, int a_MaxOffset, int a_MaxDepth, int a_MaxSize);
-
-protected:
- class cRainbowRoads; // fwd: RainbowRoadsGen.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;
-} ;
-
-
-
-