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

12 lines
255 B
C++

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