mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-01 21:53:38 +00:00
14 lines
322 B
C++
14 lines
322 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class DownfallMixerLayer : public Layer {
|
|
private:
|
|
std::shared_ptr<Layer> downfall;
|
|
int layer;
|
|
|
|
public:
|
|
DownfallMixerLayer(std::shared_ptr<Layer> downfall,
|
|
std::shared_ptr<Layer> parent, int layer);
|
|
intArray getArea(int xo, int yo, int w, int h);
|
|
}; |