the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class FastNoise
4{
5private:
6 byte **noiseMaps;
7 int levels;
8
9public:
10 FastNoise(int levels);
11 FastNoise(Random *random, int levels);
12
13 void init(Random *random, int levels);
14 ~FastNoise();
15
16 doubleArray getRegion(doubleArray buffer, double x, double y, double z, int xSize, int ySize, int zSize, double xScale, double yScale, double zScale);
17};