mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-04 14:09:47 +03:00
14 lines
292 B
C++
14 lines
292 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "AppPlatform_sdl_base.hpp"
|
|
|
|
class AppPlatform_sdl_emscripten : public AppPlatform_sdl_base
|
|
{
|
|
public:
|
|
AppPlatform_sdl_emscripten(std::string storageDir, SDL_Window *window);
|
|
|
|
Texture loadTexture(const std::string& path, bool b = false) override;
|
|
};
|