fix: add boolean typdef, more case-insensitive includes

This commit is contained in:
Tropical 2026-03-02 16:15:26 -06:00
parent 180647231b
commit 20af84454a
4 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#include "item.h"
#include "Item.h"
class HangingEntity;

View file

@ -4,7 +4,7 @@
#include "net.minecraft.world.level.tile.h"
#include "ItemInstance.h"
#include "GenericStats.h"
#include "RedstoneItem.h"
#include "RedStoneItem.h"
RedStoneItem::RedStoneItem(int id) : Item(id)
{

View file

@ -10,7 +10,7 @@ using namespace std;
#include "net.minecraft.world.h"
#include "net.minecraft.stats.h"
#include "TileItem.h"
#include "facing.h"
#include "Facing.h"
// 4J-PB - for the debug option of not removing items
#include <xuiresource.h>

View file

@ -44,6 +44,7 @@ typedef struct {
typedef long long LONGLONG;
typedef size_t SIZE_T;
typedef std::wstring LPWSTR;
typedef unsigned char boolean; // java brainrot
// https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-filetime
typedef struct _FILETIME {