blob: acda9fa774a2e588e6b6cf11e2e4b96b10d6af06 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "Layer.h"
class AddMushroomIslandLayer : public Layer
{
public:
AddMushroomIslandLayer(__int64 seedMixup, shared_ptr<Layer> parent);
virtual intArray getArea(int xo, int yo, int w, int h);
};
|