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

11 lines
210 B
C++

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