blob: 04009ad688f902fec7a28bfb2405b618c6ec9311 (
plain)
1
2
3
4
5
6
7
8
9
|
#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);
};
|