4jcraft/targets/minecraft/world/level/newbiome/layer/IslandLayer.h
2026-04-01 13:27:58 -05:00

12 lines
197 B
C++

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