aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/NetherSphere.cpp
blob: 072a8ad47d3a43431f80d0629dfc89db5c1cb361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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)
{
}