mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-25 16:55:50 +00:00
8 lines
207 B
C++
8 lines
207 B
C++
#pragma once
|
|
#include "Layer.h"
|
|
|
|
class AddSnowLayer : public Layer {
|
|
public:
|
|
AddSnowLayer(int64_t seedMixup, std::shared_ptr<Layer> parent);
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |