mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 14:53:36 +00:00
9 lines
183 B
C++
9 lines
183 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class DownfallLayer : public Layer {
|
|
public:
|
|
DownfallLayer(std::shared_ptr<Layer> parent);
|
|
intArray getArea(int xo, int yo, int w, int h);
|
|
}; |