mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 15:37:14 +00:00
fix missing include and Minecraft.h errors
This commit is contained in:
parent
371c734719
commit
fa4eb9cdf9
|
|
@ -43,6 +43,10 @@ class PsPlusUpsellWrapper;
|
|||
#include "../Minecraft.World/Util/C4JThread.h"
|
||||
#include "Textures/ResourceLocation.h"
|
||||
|
||||
#ifdef linux
|
||||
#undef linux
|
||||
#endif
|
||||
|
||||
class Minecraft {
|
||||
private:
|
||||
enum OS { linux, solaris, windows, macos, unknown, xbox };
|
||||
|
|
@ -362,7 +366,7 @@ public:
|
|||
private:
|
||||
// A bit field that store whether a particular quadrant is in the full
|
||||
// tutorial or not
|
||||
BYTE m_inFullTutorialBits;
|
||||
uint8_t m_inFullTutorialBits;
|
||||
|
||||
public:
|
||||
bool isTutorial();
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "../../../Minecraft.World/Util/Random.h"
|
||||
#include "../Minecraft.Client/SkinBox.h"
|
||||
#include "SkinBox.h"
|
||||
class Mob;
|
||||
class ModelPart;
|
||||
class TexOffs;
|
||||
|
|
|
|||
Loading…
Reference in a new issue