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