diff options
author | Mattes D <github@xoft.cz> | 2014-11-23 18:16:20 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-23 18:16:20 +0100 |
commit | 478bbad5ede86ec9f89444bdd60471ab314bf65a (patch) | |
tree | fe8f40375167fb2cb5c394d20f1bc1ec5da58fca /src/Generating/TwoHeights.h | |
parent | Noise3D generator: Enlarged averaging to avoid steep beach slopes. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/Generating/TwoHeights.h | 23 |
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); + + + + |