Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
14 lines
343 B
C++
14 lines
343 B
C++
#pragma once
|
|
|
|
#include "StructureStart.h"
|
|
|
|
class MineShaftStart : public StructureStart
|
|
{
|
|
public:
|
|
static StructureStart *Create() { return new MineShaftStart(); }
|
|
virtual EStructureStart GetType() { return eStructureStart_MineShaftStart; }
|
|
|
|
public:
|
|
MineShaftStart();
|
|
MineShaftStart(Level *level, Random *random, int chunkX, int chunkZ);
|
|
}; |