mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 04:43:36 +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);
|
|
}; |