the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "ChunkSource.h"
3
4class Level;
5
6class LargeFeature
7{
8public:
9 static const wstring STRONGHOLD;
10protected:
11 int radius;
12 Random *random;
13 Level *level;
14
15public:
16 LargeFeature();
17 ~LargeFeature();
18
19 virtual void apply(ChunkSource *ChunkSource, Level *level, int xOffs, int zOffs, byteArray blocks);
20
21protected:
22 virtual void addFeature(Level *level, int x, int z, int xOffs, int zOffs, byteArray blocks) {}
23};