summaryrefslogtreecommitdiffstats
path: root/source/Generating/ComposableGenerator.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-02-02 19:17:46 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-02-02 19:17:46 +0100
commit5856500be7440f56ab60be53b610ab49ee9b41ba (patch)
treeb756a166b462d4311ef2faf22f10a0127e50a004 /source/Generating/ComposableGenerator.h
parentFixed GCC error in ManualBindings (diff)
downloadcuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.tar
cuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.tar.gz
cuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.tar.bz2
cuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.tar.lz
cuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.tar.xz
cuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.tar.zst
cuberite-5856500be7440f56ab60be53b610ab49ee9b41ba.zip
Diffstat (limited to '')
-rw-r--r--source/Generating/ComposableGenerator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/Generating/ComposableGenerator.h b/source/Generating/ComposableGenerator.h
index e3a37d57c..327074436 100644
--- a/source/Generating/ComposableGenerator.h
+++ b/source/Generating/ComposableGenerator.h
@@ -34,6 +34,9 @@ public:
/// Generates biomes for the given chunk
virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) = 0;
+
+ /// Reads parameters from the ini file, prepares generator for use.
+ virtual void Initialize(cIniFile & a_IniFile) {}
} ;