the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Entity.h"
4
5class NetherSphere : public Entity
6{
7public:
8 eINSTANCEOF GetType() { return eTYPE_NETHER_SPHERE; };
9public:
10 NetherSphere(Level *level);
11
12protected:
13 virtual void defineSynchedData();
14 virtual void readAdditionalSaveData(CompoundTag *tag);
15 virtual void addAdditonalSaveData(CompoundTag *tag);
16};