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
26 lines
466 B
C++
26 lines
466 B
C++
#include "stdafx.h"
|
|
#include "NetherSphere.h"
|
|
|
|
|
|
|
|
NetherSphere::NetherSphere(Level *level) : Entity(level)
|
|
{
|
|
// 4J Stu - This function call had to be moved here from the Entity ctor to ensure that
|
|
// the derived version of the function is called
|
|
this->defineSynchedData();
|
|
|
|
setSize(4, 4);
|
|
}
|
|
|
|
|
|
void NetherSphere::defineSynchedData()
|
|
{
|
|
}
|
|
|
|
void NetherSphere::readAdditionalSaveData(CompoundTag *tag)
|
|
{
|
|
}
|
|
|
|
void NetherSphere::addAdditonalSaveData(CompoundTag *tag)
|
|
{
|
|
} |