mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-06-02 16:24:58 +00:00
15 lines
338 B
C++
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);
|
|
}
|