mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-30 22: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 seedMixup, std::shared_ptr<Layer> parent);
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |