Initial commit - LCEMP source code (assets excluded)

This commit is contained in:
NOTPIES
2026-03-01 20:29:13 -03:00
commit 21a5a4aef0
2946 changed files with 577259 additions and 0 deletions

View File

@@ -0,0 +1,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)
{
}