mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 23:58:12 +05:00
11 lines
162 B
C++
11 lines
162 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class IslandLayer : public Layer
|
|
{
|
|
public:
|
|
IslandLayer(int64_t seedMixup);
|
|
|
|
intArray getArea(int xo, int yo, int w, int h);
|
|
}; |