mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-27 23:33:53 +00:00
10 lines
171 B
C
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);
|
||
|
|
};
|