4jcraft/targets/minecraft/world/level/newbiome/layer/RiverLayer.h

13 lines
244 B
C++

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