mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-06-02 16:24:58 +00:00
20 lines
464 B
C++
20 lines
464 B
C++
#pragma once
|
|
#include "Layer.h"
|
|
|
|
class AddEdgeLayer : public Layer
|
|
{
|
|
|
|
|
|
private:
|
|
|
|
int mode;
|
|
intArray coolWarm(int xo, int yo, int w, int h);
|
|
intArray heatIce(int xo, int yo, int w, int h);
|
|
intArray introduceSpecial(int xo, int yo, int w, int h);
|
|
|
|
|
|
public:
|
|
AddEdgeLayer(int64_t seed, std::shared_ptr<Layer> parent, int64_t seedMixup, int mode);
|
|
virtual ~AddEdgeLayer() {}
|
|
intArray getArea(int xo, int yo, int w, int h) override;
|
|
}; |