mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-05-21 22:55:04 +00:00
12 lines
282 B
C++
12 lines
282 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class RemoveTooMuchOceanLayer : public Layer
|
|
{
|
|
public:
|
|
RemoveTooMuchOceanLayer(int64_t seed, shared_ptr<Layer> parent, int64_t seedMixup);
|
|
virtual ~RemoveTooMuchOceanLayer() {}
|
|
virtual intArray getArea(int xo, int yo, int w, int h) override;
|
|
};
|