summaryrefslogtreecommitdiffstats
path: root/src/Generating/Trees.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-02-20 16:24:52 +0100
committerMattes D <github@xoft.cz>2014-02-20 16:24:52 +0100
commit191a08fc32819c911cfa081a12db95a13d9223b6 (patch)
tree69e4fd8f1104652ea18a06ab732a656f3eacb346 /src/Generating/Trees.cpp
parentAPIDump: Fixed cBlockArea:GetRelBlockType() return types. (diff)
parentAdd BlockNewLeaves.h and rename Darkoac to Darkoak (diff)
downloadcuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar
cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.gz
cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.bz2
cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.lz
cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.xz
cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.tar.zst
cuberite-191a08fc32819c911cfa081a12db95a13d9223b6.zip
Diffstat (limited to 'src/Generating/Trees.cpp')
-rw-r--r--src/Generating/Trees.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Generating/Trees.cpp b/src/Generating/Trees.cpp
index 7e8a3c75f..a660285d1 100644
--- a/src/Generating/Trees.cpp
+++ b/src/Generating/Trees.cpp
@@ -382,6 +382,24 @@ void GetBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Nois
+void GetAcaciaTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks)
+{
+ // TODO
+}
+
+
+
+
+
+void GetDarkoakTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks)
+{
+ // TODO
+}
+
+
+
+
+
void GetTallBirchTreeImage(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_Noise, int a_Seq, sSetBlockVector & a_LogBlocks, sSetBlockVector & a_OtherBlocks)
{
int Height = 9 + (a_Noise.IntNoise3DInt(a_BlockX + 64 * a_Seq, a_BlockY, a_BlockZ) % 3);