aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/TemperatureMixerLayer.h
blob: 3b3f56e043081522fc0bdfc15c53f2ae621778c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "Layer.h"

class TemperatureMixerLayer : public Layer
{
private:
	shared_ptr<Layer>temp;
	int layer;

public:
	TemperatureMixerLayer(shared_ptr<Layer>temp, shared_ptr<Layer>parent, int layer);

	virtual intArray getArea(int xo, int yo, int w, int h);
};