Files
MinecraftConsoles/Minecraft.World/DownfallMixerLayer.h

14 lines
287 B
C
Raw Normal View History

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