Files
4jcraft/Minecraft.World/RiverLayer.h
ThePixelMoon 1a0dd4bd06 Initial dump
2026-03-01 15:49:25 +02:00

10 lines
184 B
C++

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