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