This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.World/AddSnowLayer.h
2026-03-02 17:37:16 +07:00

9 lines
202 B
C++

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