Files
neoLegacy/Minecraft.World/ShoreLayer.h
2026-07-02 21:09:39 -04:00

13 lines
423 B
C++

#pragma once
#include "Layer.h"
class ShoreLayer : public Layer
{
private:
static bool isJungleCompatible(int id);
static bool isMesaBiome(int id);
void replaceIfNeighborOcean(intArray& b, intArray& result, int x, int y, int w, int stride, int center, int target);
public:
ShoreLayer(int64_t seed, shared_ptr<Layer> parent, int64_t seedMixup);
virtual intArray getArea(int xo, int yo, int w, int h);
};