diff options
author | madmaxoft <github@xoft.cz> | 2014-01-18 17:03:31 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-18 17:03:31 +0100 |
commit | 896f1a26ec82fe44b933015832756a3629801075 (patch) | |
tree | 3055bad0f18571f3ed5b24994b3cf829c3136a28 /src/Generating/FinishGen.h | |
parent | Fix bad nested headings. (diff) | |
parent | Fixed errors. (diff) | |
download | cuberite-896f1a26ec82fe44b933015832756a3629801075.tar cuberite-896f1a26ec82fe44b933015832756a3629801075.tar.gz cuberite-896f1a26ec82fe44b933015832756a3629801075.tar.bz2 cuberite-896f1a26ec82fe44b933015832756a3629801075.tar.lz cuberite-896f1a26ec82fe44b933015832756a3629801075.tar.xz cuberite-896f1a26ec82fe44b933015832756a3629801075.tar.zst cuberite-896f1a26ec82fe44b933015832756a3629801075.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/FinishGen.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Generating/FinishGen.h b/src/Generating/FinishGen.h index d89ffed15..2e5732929 100644 --- a/src/Generating/FinishGen.h +++ b/src/Generating/FinishGen.h @@ -47,6 +47,28 @@ protected: +class cFinishGenNetherClumpFoliage : + public cFinishGen +{ +public: + cFinishGenNetherClumpFoliage(int a_Seed) : + m_Noise(a_Seed), + m_Seed(a_Seed) + { + } + +protected: + cNoise m_Noise; + int m_Seed; + + void TryPlaceClump(cChunkDesc & a_ChunkDesc, int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_Block); + virtual void GenFinish(cChunkDesc & a_ChunkDesc) override; +} ; + + + + + class cFinishGenSprinkleFoliage : public cFinishGen { @@ -117,6 +139,7 @@ public: { } + int GetLevel(void) const { return m_Level; } protected: int m_Level; |