mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-31 02:13:02 +00:00
12 lines
255 B
C++
12 lines
255 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
#include "Layer.h"
|
|
|
|
class AddSnowLayer : public Layer {
|
|
public:
|
|
AddSnowLayer(int64_t seedMixup, std::shared_ptr<Layer> parent);
|
|
virtual std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |