mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-31 21:12:27 +00:00
16 lines
349 B
C++
16 lines
349 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#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);
|
|
std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |