mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-27 16:42:25 +00:00
17 lines
359 B
C++
17 lines
359 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "Layer.h"
|
|
|
|
class TemperatureMixerLayer : public Layer {
|
|
private:
|
|
std::shared_ptr<Layer> temp;
|
|
int layer;
|
|
|
|
public:
|
|
TemperatureMixerLayer(std::shared_ptr<Layer> temp,
|
|
std::shared_ptr<Layer> parent, int layer);
|
|
|
|
virtual std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |