mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-12 18:42:29 +00:00
13 lines
244 B
C++
13 lines
244 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
#include "Layer.h"
|
|
|
|
class RiverLayer : public Layer {
|
|
public:
|
|
RiverLayer(int64_t seedMixup, std::shared_ptr<Layer> parent);
|
|
std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |