1
0

Initial version of "DistortedMembraneOverhangs"

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1412 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com
2013-04-25 19:29:56 +00:00
parent 7387f05650
commit c40eb92de3
3 changed files with 72 additions and 1 deletions

View File

@@ -143,3 +143,23 @@ protected:
class cStructGenDistortedMembraneOverhangs :
public cStructureGen
{
public:
cStructGenDistortedMembraneOverhangs(int a_Seed);
protected:
cNoise m_NoiseX;
cNoise m_NoiseY;
cNoise m_NoiseZ;
cNoise m_NoiseH;
// cStructureGen override:
virtual void GenStructures(cChunkDesc & a_ChunkDesc) override;
} ;