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