Files

14 lines
272 B
C
Raw Permalink Normal View History

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