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