blob: eec3f19ef0f26c4d1ebd0621222ad3763b7cfd1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Layer.h"
class SmoothLayer : public Layer
{
public:
SmoothLayer(__int64 seedMixup, shared_ptr<Layer>parent);
virtual intArray getArea(int xo, int yo, int w, int h);
};
|