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

14 lines
248 B
C++

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