summaryrefslogtreecommitdiffstats
path: root/src/Generating/TwoHeights.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-23 18:16:20 +0100
committerMattes D <github@xoft.cz>2014-11-23 18:16:20 +0100
commit478bbad5ede86ec9f89444bdd60471ab314bf65a (patch)
treefe8f40375167fb2cb5c394d20f1bc1ec5da58fca /src/Generating/TwoHeights.h
parentNoise3D generator: Enlarged averaging to avoid steep beach slopes. (diff)
downloadcuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.tar
cuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.tar.gz
cuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.tar.bz2
cuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.tar.lz
cuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.tar.xz
cuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.tar.zst
cuberite-478bbad5ede86ec9f89444bdd60471ab314bf65a.zip
Diffstat (limited to 'src/Generating/TwoHeights.h')
-rw-r--r--src/Generating/TwoHeights.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Generating/TwoHeights.h b/src/Generating/TwoHeights.h
new file mode 100644
index 000000000..353598011
--- /dev/null
+++ b/src/Generating/TwoHeights.h
@@ -0,0 +1,23 @@
+
+// TwoHeights.h
+
+// Declares the function to create a new instance of the cTwoHeights terrain shape generator
+
+
+
+
+
+#pragma once
+
+#include "ComposableGenerator.h"
+
+
+
+
+/** Creates and returns a new instance of the cTwoHeights terrain shape generator.
+The instance must be Initialize()-d before it is used. */
+extern cTerrainShapeGenPtr CreateShapeGenTwoHeights(int a_Seed, cBiomeGenPtr a_BiomeGen);
+
+
+
+