the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "..\Minecraft.World\net.minecraft.world.level.h"
3
4class DemoLevel : public Level
5{
6private:
7 static const __int64 DEMO_LEVEL_SEED = 0; // 4J - TODO - was "Don't Look Back".hashCode();
8 static const int DEMO_SPAWN_X = 796;
9 static const int DEMO_SPAWN_Y = 72;
10 static const int DEMO_SPAWN_Z = -731;
11public:
12 DemoLevel(shared_ptr<LevelStorage> levelStorage, const wstring& levelName);
13 DemoLevel(Level *level, Dimension *dimension);
14protected:
15 virtual void setInitialSpawn();
16};