mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
* macOS Support & Cleanup * Fix malformed comments in build-wasm.bat * Emscripten Fixes * * Add shebang to the grabsounds.py script Since it was changed from rw- to rwx, I'll add the shebang so that it actually runs properly. * * Re-add the patch_data and readme files. * * Remove sound data. * Fix some more things. * Think it's ready to pull now... --------- Co-authored-by: BrentDaMage <BrentDaMage@users.noreply.github.com> Co-authored-by: iProgramInCpp <iprogramincpp@gmail.com>
14 lines
285 B
C++
14 lines
285 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "../sdl/AppPlatform_sdl.hpp"
|
|
|
|
class AppPlatform_emscripten : public AppPlatform_sdlbase
|
|
{
|
|
public:
|
|
AppPlatform_emscripten(std::string storageDir, SDL_Window *window);
|
|
|
|
Texture loadTexture(const std::string& path, bool b = false) override;
|
|
};
|