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