diff options
author | Mattes D <github@xoft.cz> | 2015-10-05 21:15:08 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-10-05 21:15:08 +0200 |
commit | 60800655c8cc152f3b44103163307a992f1d64cd (patch) | |
tree | 4326c435c4f4cde6ba66085e2adedede486e7d88 /src/Generating/Prefab.h | |
parent | Merge pull request #2525 from cuberite/StreamPerf (diff) | |
download | cuberite-60800655c8cc152f3b44103163307a992f1d64cd.tar cuberite-60800655c8cc152f3b44103163307a992f1d64cd.tar.gz cuberite-60800655c8cc152f3b44103163307a992f1d64cd.tar.bz2 cuberite-60800655c8cc152f3b44103163307a992f1d64cd.tar.lz cuberite-60800655c8cc152f3b44103163307a992f1d64cd.tar.xz cuberite-60800655c8cc152f3b44103163307a992f1d64cd.tar.zst cuberite-60800655c8cc152f3b44103163307a992f1d64cd.zip |
Diffstat (limited to 'src/Generating/Prefab.h')
-rw-r--r-- | src/Generating/Prefab.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Generating/Prefab.h b/src/Generating/Prefab.h index 45af4b282..c62a68f97 100644 --- a/src/Generating/Prefab.h +++ b/src/Generating/Prefab.h @@ -146,6 +146,9 @@ public: /** Sets the flag whether the lowest layer of the prefab should be repeated downwards until it hits a solid block. */ void SetExtendFloor(bool a_ShouldExtendFloor) { m_ShouldExtendFloor = a_ShouldExtendFloor; } + /** Sets the internal hitbox to the specified value. */ + void SetHitBox(const cCuboid & a_HitBox) { m_HitBox = a_HitBox; } + protected: /** Packs complete definition of a single block, for per-letter assignment. */ struct sBlockTypeDef |