mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-31 01:32:56 +00:00
14 lines
253 B
C++
14 lines
253 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
#include "Layer.h"
|
|
|
|
class AddIslandLayer : public Layer {
|
|
public:
|
|
AddIslandLayer(int64_t seedMixup, std::shared_ptr<Layer> parent);
|
|
|
|
std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |