neoLegacy/Minecraft.World/IslandLayer.h
2026-04-13 17:45:07 +02:00

11 lines
176 B
C++

#pragma once
#include "Layer.h"
class IslandLayer : public Layer
{
public:
IslandLayer(int64_t seed, int64_t seedMixup);
intArray getArea(int xo, int yo, int w, int h);
};