Files
MinecraftConsoles/Minecraft.World/DownfallLayer.h
2026-03-02 17:37:16 +07:00

10 lines
171 B
C++

#pragma once
#include "Layer.h"
class DownfallLayer : public Layer
{
public:
DownfallLayer(shared_ptr<Layer>parent);
intArray getArea(int xo, int yo, int w, int h);
};