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