diff options
author | KingCol13 <48412633+KingCol13@users.noreply.github.com> | 2020-09-25 11:13:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-25 11:13:59 +0200 |
commit | a78fd671b229b32b04a7abf9018edb7a6c08ccbe (patch) | |
tree | fa9857856348b0dfc7d7ad8dd9e5e33a2e3e8632 /src/Generating | |
parent | Put phonograph on right part of visual spectrum (diff) | |
download | cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.tar cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.tar.gz cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.tar.bz2 cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.tar.lz cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.tar.xz cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.tar.zst cuberite-a78fd671b229b32b04a7abf9018edb7a6c08ccbe.zip |
Diffstat (limited to 'src/Generating')
-rw-r--r-- | src/Generating/ChunkGenerator.h | 2 | ||||
-rw-r--r-- | src/Generating/IntGen.h | 1 | ||||
-rw-r--r-- | src/Generating/Trees.h | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/Generating/ChunkGenerator.h b/src/Generating/ChunkGenerator.h index 52c9cd896..5b9f2c0ac 100644 --- a/src/Generating/ChunkGenerator.h +++ b/src/Generating/ChunkGenerator.h @@ -1,7 +1,7 @@ #pragma once #include "../Defines.h" - +#include "ChunkDef.h" diff --git a/src/Generating/IntGen.h b/src/Generating/IntGen.h index 3b9f3b027..786c6099d 100644 --- a/src/Generating/IntGen.h +++ b/src/Generating/IntGen.h @@ -31,6 +31,7 @@ by using templates. #include <tuple> #include "../Noise/Noise.h" +#include "BiomeDef.h" diff --git a/src/Generating/Trees.h b/src/Generating/Trees.h index c9fa0ec18..99a5c24f9 100644 --- a/src/Generating/Trees.h +++ b/src/Generating/Trees.h @@ -18,7 +18,7 @@ logs can overwrite others(leaves), but others shouldn't overwrite logs. This is #pragma once #include "../Noise/Noise.h" - +#include "../ChunkDef.h" // For sSetBlockVector |