mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +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 "../Minecraft.World/Util/C4JThread.h"
|
||||||
#include "Textures/ResourceLocation.h"
|
#include "Textures/ResourceLocation.h"
|
||||||
|
|
||||||
|
#ifdef linux
|
||||||
|
#undef linux
|
||||||
|
#endif
|
||||||
|
|
||||||
class Minecraft {
|
class Minecraft {
|
||||||
private:
|
private:
|
||||||
enum OS { linux, solaris, windows, macos, unknown, xbox };
|
enum OS { linux, solaris, windows, macos, unknown, xbox };
|
||||||
|
|
@ -362,7 +366,7 @@ public:
|
||||||
private:
|
private:
|
||||||
// A bit field that store whether a particular quadrant is in the full
|
// A bit field that store whether a particular quadrant is in the full
|
||||||
// tutorial or not
|
// tutorial or not
|
||||||
BYTE m_inFullTutorialBits;
|
uint8_t m_inFullTutorialBits;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
bool isTutorial();
|
bool isTutorial();
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../../../Minecraft.World/Util/Random.h"
|
#include "../../../Minecraft.World/Util/Random.h"
|
||||||
#include "../Minecraft.Client/SkinBox.h"
|
#include "SkinBox.h"
|
||||||
class Mob;
|
class Mob;
|
||||||
class ModelPart;
|
class ModelPart;
|
||||||
class TexOffs;
|
class TexOffs;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue