mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 03:28:59 +02:00
9 lines
193 B
C++
9 lines
193 B
C++
#pragma once
|
|
#include "Layer.h"
|
|
|
|
class ShoreLayer : public Layer
|
|
{
|
|
public:
|
|
ShoreLayer(__int64 seed, shared_ptr<Layer> parent);
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |