mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-31 05:02:54 +00:00
fix: add boolean typdef, more case-insensitive includes
This commit is contained in:
parent
180647231b
commit
20af84454a
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "item.h"
|
||||
#include "Item.h"
|
||||
|
||||
class HangingEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue