This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.World/RiverLayer.h
2026-03-07 03:31:30 +07:00

10 lines
184 B
C++

#pragma once
#include "Layer.h"
class RiverLayer : public Layer
{
public:
RiverLayer(int64_t seedMixup, shared_ptr<Layer>parent);
intArray getArea(int xo, int yo, int w, int h);
};