mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
More updates to fix stuff...
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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"))
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user