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