hhhhh
This commit is contained in:
@@ -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,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
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#pragma once
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#pragma once
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#pragma once
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#pragma once
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#pragma once
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
#pragma once
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user