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

14 lines
253 B
C++

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