diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-05 18:27:08 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-05 18:27:08 +0200 |
commit | 270560a198db49464a5a5a6d75d9650a30208bc7 (patch) | |
tree | a1ab9162becfd1b0888a0beb359d09edb228093f /source/Generating/ComposableGenerator.h | |
parent | Lighting: Fixed underwater lighting (FS #369) (diff) | |
download | cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.tar cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.tar.gz cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.tar.bz2 cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.tar.lz cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.tar.xz cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.tar.zst cuberite-270560a198db49464a5a5a6d75d9650a30208bc7.zip |
Diffstat (limited to 'source/Generating/ComposableGenerator.h')
-rw-r--r-- | source/Generating/ComposableGenerator.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source/Generating/ComposableGenerator.h b/source/Generating/ComposableGenerator.h index fb8e4fdc6..ee38bdb9d 100644 --- a/source/Generating/ComposableGenerator.h +++ b/source/Generating/ComposableGenerator.h @@ -27,6 +27,9 @@ See http://forum.mc-server.org/showthread.php?tid=409 for details. // fwd: Noise3DGenerator.h
class cNoise3DComposable;
+// fwd: DistortedHeightmap.h
+class cDistortedHeightmap;
+
@@ -146,8 +149,11 @@ protected: cFinishGenList m_FinishGens;
// Specific generators that can be reused for different purposes - we don't want to create multiple objects for them
- cNoise3DComposable * m_Noise3DComposable;
- int m_NumNoise3DComposableUses; // How many times is it actually used?
+ cNoise3DComposable * m_Noise3DComposable;
+ int m_NumNoise3DComposableUses; ///< How many times is it actually used?
+ cDistortedHeightmap * m_DistortedHeightmap;
+ int m_NumDistortedHeightmapUses; ///< How many times is it actually used?
+
/// Reads the biome gen settings from the ini and initializes m_BiomeGen accordingly
void InitBiomeGen(cIniFile & a_IniFile);
|