diff options
author | cedeel@gmail.com <cedeel@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-08 03:56:44 +0200 |
---|---|---|
committer | cedeel@gmail.com <cedeel@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-08 03:56:44 +0200 |
commit | 2295c1d7cba3df6f7fc2e96b0d25df116d0b1692 (patch) | |
tree | a25a3245f357f7e216a8949f836a98bd27eab938 /source/CompoGen.h | |
parent | Fixed the nightbuild script for automatic Bindings generation (diff) | |
download | cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.tar cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.tar.gz cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.tar.bz2 cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.tar.lz cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.tar.xz cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.tar.zst cuberite-2295c1d7cba3df6f7fc2e96b0d25df116d0b1692.zip |
Diffstat (limited to '')
-rw-r--r-- | source/CompoGen.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/CompoGen.h b/source/CompoGen.h index 74e38757b..2a669f43b 100644 --- a/source/CompoGen.h +++ b/source/CompoGen.h @@ -79,13 +79,21 @@ class cCompoGenClassic : public cTerrainCompositionGen
{
public:
- cCompoGenClassic(int a_SeaLevel, int a_BeachHeight, int a_BeachDepth);
+ cCompoGenClassic(int a_SeaLevel, int a_BeachHeight, int a_BeachDepth,
+ BLOCKTYPE a_BlockTop, BLOCKTYPE a_BlockMiddle, BLOCKTYPE a_BlockBottom,
+ BLOCKTYPE a_BlockBeach, BLOCKTYPE a_BlockBeachBottom, BLOCKTYPE a_BlockSea);
protected:
int m_SeaLevel;
int m_BeachHeight;
int m_BeachDepth;
+ BLOCKTYPE m_BlockTop;
+ BLOCKTYPE m_BlockMiddle;
+ BLOCKTYPE m_BlockBottom;
+ BLOCKTYPE m_BlockBeach;
+ BLOCKTYPE m_BlockBeachBottom;
+ BLOCKTYPE m_BlockSea;
// cTerrainCompositionGen overrides:
virtual void ComposeTerrain(
|