This commit is contained in:
JuiceyDev
2026-03-06 07:13:57 +01:00
parent fa88145b1f
commit 17ac8deddf
349 changed files with 456 additions and 39 deletions
@@ -1,3 +1,4 @@
#pragma once
#include "TileEntities/EntityTile.h"
class PistonPieceEntity;
@@ -1,3 +1,4 @@
#pragma once
#include "TileEntity.h"
class PistonPieceEntity : public TileEntity
+1
View File
@@ -1,3 +1,4 @@
#pragma once
#include "Material.h"
// 4J added, Java version just does a local alteration when instantiating the Material for webs to get the same thing
+1
View File
@@ -0,0 +1 @@
#pragma once
@@ -0,0 +1 @@
#pragma once
+1
View File
@@ -0,0 +1 @@
#pragma once
@@ -0,0 +1 @@
#pragma once
@@ -0,0 +1 @@
#pragma once
@@ -0,0 +1 @@
#pragma once
+1
View File
@@ -1 +1,2 @@
#pragma once
#include "../IO/NBT/NbtIO.h"
@@ -1,3 +1,4 @@
#pragma once
#include "../Util/AABB.h"
#include "../Util/HitResult.h"
#include "../Util/Vec3.h"
@@ -154,6 +154,10 @@ IOException::IOException(const wstring& information)
this->information = information;
}
RuntimeException::RuntimeException(const wstring& /*information*/)
{
}
Packet::Packet() : createTime( System::currentTimeMillis() )
{
shouldDelay = false;
@@ -1,3 +1,4 @@
#pragma once
#include "../Biomes/BiomeDecorator.h"
class TheEndBiomeDecorator : public BiomeDecorator
+3 -2
View File
@@ -12,7 +12,7 @@ _world_sources_raw = run_command(
' ! -name "SkyIslandDimension.cpp"' +
' ! -name "ZonedChunkStorage.cpp"' +
' ! -name "ZoneFile.cpp"' +
' ! -name "ZoneIo.cpp"',
' ! -name "ZoneIO.cpp"',
check : true,
).stdout().strip().split('\n')
@@ -25,9 +25,10 @@ lib_world = static_library('Minecraft.World',
)
dep_zlib = dependency('zlib')
dep_crypto = dependency('libcrypto') # for MD5 in Hasher.cpp on Linux
world_dep = declare_dependency(
link_with : lib_world,
dependencies : [dep_zlib],
dependencies : [dep_zlib, dep_crypto],
include_directories : include_directories('Build/x64headers'),
)