mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-19 21:12:54 +00:00
8 lines
198 B
C++
8 lines
198 B
C++
#pragma once
|
|
#include "Layer.h"
|
|
|
|
class ShoreLayer : public Layer {
|
|
public:
|
|
ShoreLayer(__int64 seed, std::shared_ptr<Layer> parent);
|
|
virtual intArray getArea(int xo, int yo, int w, int h);
|
|
}; |