blob: eec5161030b30f4b120866e7fe9f2042ab6c7bf4 (
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 seed, shared_ptr<Layer>biomes, shared_ptr<Layer>rivers);
virtual void init(__int64 seed);
virtual intArray getArea(int xo, int yo, int w, int h);
};
|