mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-15 02:32:55 +00:00
13 lines
333 B
C++
13 lines
333 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class SmoothZoomLayer : public Layer
|
|
{
|
|
public:
|
|
public:
|
|
SmoothZoomLayer(int32_t seed, int64_t seedMixup, std::shared_ptr<Layer> parent);
|
|
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
static shared_ptr<Layer>zoom(int32_t seed, int64_t seedMixup, shared_ptr<Layer> sup, int count);
|
|
}; |