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