mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-05-21 22:55:04 +00:00
9 lines
216 B
C++
9 lines
216 B
C++
#pragma once
|
|
#include "Layer.h"
|
|
|
|
class AddSnowLayer : public Layer
|
|
{
|
|
public:
|
|
AddSnowLayer(int64_t seed, shared_ptr<Layer> parent, int64_t seedMixup);
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |