11 lines
187 B
C++
11 lines
187 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class TemperatureLayer : public Layer
|
|
{
|
|
public:
|
|
TemperatureLayer(shared_ptr<Layer> parent);
|
|
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |