Files
cafeberry/Minecraft.World/SmoothLayer.h
T
2026-07-03 18:34:01 +01:00

11 lines
205 B
C++

#pragma once
#include "Layer.h"
class SmoothLayer : public Layer
{
public:
SmoothLayer(__int64 seedMixup, shared_ptr<Layer>parent);
virtual intArray getArea(int xo, int yo, int w, int h);
};