Files
MinecraftConsoles/Minecraft.World/TemperatureMixerLayer.h

15 lines
291 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "Layer.h"
class TemperatureMixerLayer : public Layer
{
private:
std::shared_ptr<Layer>temp;
2026-03-01 12:16:08 +08:00
int layer;
public:
TemperatureMixerLayer(std::shared_ptr<Layer>temp, std::shared_ptr<Layer>parent, int layer);
2026-03-01 12:16:08 +08:00
virtual intArray getArea(int xo, int yo, int w, int h);
};