aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/NetherSphere.h
blob: 2a6ce4902f8607965f04ed4cb487699535228ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "Entity.h"

class NetherSphere : public Entity
{
public:
	eINSTANCEOF GetType() { return eTYPE_NETHER_SPHERE; };
public:
	NetherSphere(Level *level);

protected:
	virtual void defineSynchedData();
	virtual void readAdditionalSaveData(CompoundTag *tag);
	virtual void addAdditonalSaveData(CompoundTag *tag);
};