More updates to fix stuff...

This commit is contained in:
iProgramInCpp
2023-08-19 10:09:49 +03:00
parent c01a627aee
commit 30f35ef724
4 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@
#include <emscripten.h>
#include "client/common/Utils.hpp"
#include "common/Utils.hpp"
AppPlatform_emscripten::AppPlatform_emscripten(std::string storageDir, SDL_Window *window)
: AppPlatform_sdlbase(storageDir, window)

View File

@@ -6,7 +6,7 @@
#include "compat/GL.hpp"
#include "client/common/Utils.hpp"
#include "common/Utils.hpp"
AppPlatform_sdl::AppPlatform_sdl(std::string storageDir, SDL_Window *window)
: AppPlatform_sdlbase(storageDir, window, loadTexture("gui/default_world.png"))

View File

@@ -12,7 +12,7 @@
#include "compat/GL.hpp"
#endif
#include "client/common/Utils.hpp"
#include "common/Utils.hpp"
void AppPlatform_sdlbase::_init(std::string storageDir, SDL_Window *window)
{

View File

@@ -5,19 +5,13 @@ project(reminecraftpe-core)
add_library(reminecraftpe-core STATIC
NinecraftApp.cpp
common/Random.cpp
common/HitResult.cpp
common/Utils.cpp
common/PerlinNoise.cpp
common/ImprovedNoise.cpp
common/Matrix.cpp
common/Mth.cpp
common/Options.cpp
common/Timer.cpp
common/Synth.cpp
common/CThread.cpp
common/Util.cpp
common/Vec3.cpp
common/AABB.cpp
network/packets/UpdateBlockPacket.cpp
network/packets/RequestChunkPacket.cpp
network/packets/PlayerEquipmentPacket.cpp
@@ -109,6 +103,12 @@ add_library(reminecraftpe-core STATIC
client/player/input/KeyboardInput.cpp
client/player/input/ITurnInput.cpp
Minecraft.cpp
world/level/levelgen/synth/Synth.cpp
world/level/levelgen/synth/ImprovedNoise.cpp
world/level/levelgen/synth/PerlinNoise.cpp
world/phys/HitResult.cpp
world/phys/Vec3.cpp
world/phys/AABB.cpp
world/gamemode/SurvivalMode.cpp
world/gamemode/GameMode.cpp
world/gamemode/CreativeMode.cpp