mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:13:40 +00:00
10 lines
198 B
C++
10 lines
198 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class TemperatureLayer : public Layer {
|
|
public:
|
|
TemperatureLayer(std::shared_ptr<Layer> parent);
|
|
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |