neoLegacy/Minecraft.World/RiverLayer.h
2026-04-13 17:45:07 +02:00

10 lines
199 B
C++

#pragma once
#include "Layer.h"
class RiverLayer : public Layer
{
public:
RiverLayer(int64_t seed, shared_ptr<Layer> parent, int64_t seedMixup);
intArray getArea(int xo, int yo, int w, int h);
};