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