mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-05-22 00:08:42 +00:00
feat: Mesa biomes feat: changed world generation according to java fix: swamp hut changed to spruce
12 lines
236 B
C++
12 lines
236 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class RareBiomeLayer : public Layer
|
|
{
|
|
public:
|
|
RareBiomeLayer(int64_t seed, shared_ptr<Layer> parent);
|
|
virtual ~RareBiomeLayer() {}
|
|
virtual intArray getArea(int xo, int yo, int w, int h) override;
|
|
};
|