Files

11 lines
188 B
C
Raw Permalink Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "Layer.h"
class RiverInitLayer : public Layer
{
public:
RiverInitLayer(__int64 seed, shared_ptr<Layer>parent);
2026-03-01 12:16:08 +08:00
intArray getArea(int xo, int yo, int w, int h);
};