summaryrefslogtreecommitdiffstats
path: root/src/Generating/Trees.h
diff options
context:
space:
mode:
author12xx12 <44411062+12xx12@users.noreply.github.com>2021-03-05 14:04:48 +0100
committerGitHub <noreply@github.com>2021-03-05 14:04:48 +0100
commit4d6235c807e8142a41bab86a4dc1a49fb1a078ca (patch)
tree6b1c7c33d0d5e8456177b3e2bf160492d79d5d8f /src/Generating/Trees.h
parentPrepare ChunkData for BlockState storage (#5105) (diff)
downloadcuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.tar
cuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.tar.gz
cuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.tar.bz2
cuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.tar.lz
cuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.tar.xz
cuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.tar.zst
cuberite-4d6235c807e8142a41bab86a4dc1a49fb1a078ca.zip
Diffstat (limited to 'src/Generating/Trees.h')
-rw-r--r--src/Generating/Trees.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Generating/Trees.h b/src/Generating/Trees.h
index 99a5c24f9..0ffeed30c 100644
--- a/src/Generating/Trees.h
+++ b/src/Generating/Trees.h
@@ -117,3 +117,9 @@ void GetLargeJungleTreeImage(Vector3i a_BlockPos, cNoise & a_Noise, int a_Seq, s
/** Fills a_LogBlocks and a_OtherBlocks (dirt & leaves) with the blocks required to form a small jungle tree (1x1 trunk) */
void GetSmallJungleTreeImage(Vector3i a_BlockPos, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks);
+
+/** Fills a_LogBlocks and a_OtherBlocks with the blocks required to form the red mushroom */
+void GetRedMushroomTreeImage(Vector3i vector3, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks);
+
+/** Fills a_LogBlocks and a_OtherBlocks with the blocks required to form the brown mushroom */
+void GetBrownMushroomTreeImage(Vector3i a_BlockPos, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks);