the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "NetherSphere.h"
3
4
5
6NetherSphere::NetherSphere(Level *level) : Entity(level)
7{
8 // 4J Stu - This function call had to be moved here from the Entity ctor to ensure that
9 // the derived version of the function is called
10 this->defineSynchedData();
11
12 setSize(4, 4);
13}
14
15
16void NetherSphere::defineSynchedData()
17{
18}
19
20void NetherSphere::readAdditionalSaveData(CompoundTag *tag)
21{
22}
23
24void NetherSphere::addAdditonalSaveData(CompoundTag *tag)
25{
26}