mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-01 15:23:10 +00:00
8 lines
227 B
C++
8 lines
227 B
C++
#pragma once
|
|
#include "Layer.h"
|
|
|
|
class AddMushroomIslandLayer : public Layer {
|
|
public:
|
|
AddMushroomIslandLayer(__int64 seedMixup, std::shared_ptr<Layer> parent);
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |