blob: 3a069c41fec0cac014087d69002cc50376a7eff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "Layer.h"
class RiverMixerLayer : public Layer
{
private:
shared_ptr<Layer>biomes;
shared_ptr<Layer>rivers;
public:
RiverMixerLayer(int64_t seed, shared_ptr<Layer>biomes, shared_ptr<Layer>rivers);
virtual void init(int64_t seed);
virtual intArray getArea(int xo, int yo, int w, int h);
};
|