chore: remove unneeded pthread includes

This commit is contained in:
Tropical 2026-03-25 15:52:37 -05:00
parent 30170b8f9c
commit 28816876a1
4 changed files with 0 additions and 13 deletions

View file

@ -2,10 +2,6 @@
#include "Tile.h"
#include <cstdint>
#if !defined(_WIN32)
#include <pthread.h>
#endif
class PistonBaseTile : public Tile {
public:
#if defined(_WIN32)

View file

@ -4,9 +4,6 @@
#include "../Util/Definitions.h"
#include "../Util/SoundTypes.h"
#include <cstdint>
#if !defined(_WIN32)
#include <pthread.h>
#endif
class GrassTile;
class LeafTile;

View file

@ -10,9 +10,6 @@
#include "../WorldGen/Biomes/Biome.h"
#include "../Util/C4JThread.h"
#include <cstdint>
#if !defined(_WIN32)
#include <pthread.h>
#endif
#ifdef __PSVITA__
#include "../../Minecraft.Client/Platform/PSVita/PSVitaExtras/CustomSet.h"

View file

@ -5,9 +5,6 @@
#include "../../IO/NBT/CompoundTag.h"
#include "../../Headers/com.mojang.nbt.h"
#include <cstdint>
#if !defined(_WIN32)
#include <pthread.h>
#endif
class Level;