blob: f724ad82b2e164b5039fa02edb700f36ebb2709e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Layer.h"
class SwampRiversLayer : public Layer
{
public:
SwampRiversLayer(__int64 seed, shared_ptr<Layer> parent);
intArray getArea(int xo, int yo, int w, int h);
};
|