Files
BluTac10-Xbox_Neo/Minecraft.World/RareBiomeSpotLayer.cpp
2026-04-13 17:45:07 +02:00

15 lines
338 B
C++

#include "stdafx.h"
#include "RareBiomeSpotLayer.h"
#include "IntCache.h"
RareBiomeSpotLayer::RareBiomeSpotLayer(int64_t seed, std::shared_ptr<Layer> parent, int64_t seedMixup) : Layer(seedMixup)
{
this->parent = parent;
}
intArray RareBiomeSpotLayer::getArea(int xo, int yo, int w, int h)
{
return parent->getArea(xo, yo, w, h);
}