From 28816876a1ab9ef8e211a759348cc0fe4327f3b5 Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Wed, 25 Mar 2026 15:52:37 -0500 Subject: [PATCH] chore: remove unneeded pthread includes --- Minecraft.World/Blocks/PistonBaseTile.h | 4 ---- Minecraft.World/Blocks/Tile.h | 3 --- Minecraft.World/Level/Level.h | 3 --- Minecraft.World/Level/Storage/OldChunkStorage.h | 3 --- 4 files changed, 13 deletions(-) diff --git a/Minecraft.World/Blocks/PistonBaseTile.h b/Minecraft.World/Blocks/PistonBaseTile.h index cf7dab357..48c420010 100644 --- a/Minecraft.World/Blocks/PistonBaseTile.h +++ b/Minecraft.World/Blocks/PistonBaseTile.h @@ -2,10 +2,6 @@ #include "Tile.h" #include -#if !defined(_WIN32) -#include -#endif - class PistonBaseTile : public Tile { public: #if defined(_WIN32) diff --git a/Minecraft.World/Blocks/Tile.h b/Minecraft.World/Blocks/Tile.h index 941da7ec0..925fd477c 100644 --- a/Minecraft.World/Blocks/Tile.h +++ b/Minecraft.World/Blocks/Tile.h @@ -4,9 +4,6 @@ #include "../Util/Definitions.h" #include "../Util/SoundTypes.h" #include -#if !defined(_WIN32) -#include -#endif class GrassTile; class LeafTile; diff --git a/Minecraft.World/Level/Level.h b/Minecraft.World/Level/Level.h index fa820f3d4..03370e96c 100644 --- a/Minecraft.World/Level/Level.h +++ b/Minecraft.World/Level/Level.h @@ -10,9 +10,6 @@ #include "../WorldGen/Biomes/Biome.h" #include "../Util/C4JThread.h" #include -#if !defined(_WIN32) -#include -#endif #ifdef __PSVITA__ #include "../../Minecraft.Client/Platform/PSVita/PSVitaExtras/CustomSet.h" diff --git a/Minecraft.World/Level/Storage/OldChunkStorage.h b/Minecraft.World/Level/Storage/OldChunkStorage.h index 5a7ce83ff..0b40872bd 100644 --- a/Minecraft.World/Level/Storage/OldChunkStorage.h +++ b/Minecraft.World/Level/Storage/OldChunkStorage.h @@ -5,9 +5,6 @@ #include "../../IO/NBT/CompoundTag.h" #include "../../Headers/com.mojang.nbt.h" #include -#if !defined(_WIN32) -#include -#endif class Level;