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