diff options
author | Mattes D <github@xoft.cz> | 2013-12-29 09:04:08 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-12-29 09:04:08 +0100 |
commit | d40ed869076acd764af70ac37d12448ff2a7847d (patch) | |
tree | 795cc095035f8ad0ce4bd74c0709e28901332286 /src/Generating/Trees.h | |
parent | Fixed a (valid) warning in RCONServer. (diff) | |
parent | Added function to create Tall Birch tree in BirchTreeForest biomes (diff) | |
download | cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.tar cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.tar.gz cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.tar.bz2 cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.tar.lz cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.tar.xz cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.tar.zst cuberite-d40ed869076acd764af70ac37d12448ff2a7847d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/Trees.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Generating/Trees.h b/src/Generating/Trees.h index f5148ad6f..514158eb7 100644 --- a/src/Generating/Trees.h +++ b/src/Generating/Trees.h @@ -63,6 +63,9 @@ void GetLargeAppleTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a /// Generates an image of a random birch tree void GetBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks); +/// Generates an image of a random large birch tree +void GetTallBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks,sSetBlockVector & a_OtherBlocks); + /// Generates an image of a random conifer tree void GetConiferTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks); |