Files
mcpe/platforms/sdl/emscripten/AppPlatform_sdl_emscripten.hpp
2023-11-01 21:48:41 -04:00

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;
};