Elevate Engine
1
Loading...
Searching...
No Matches
WebPlatform.cpp
Go to the documentation of this file.
1
#include <
ElevateEngine/Core/Platform.h
>
2
3
#ifdef EE_PLATFORM_WEB
4
#include <emscripten.h>
5
6
namespace
Elevate::Platform
7
{
8
void
OpenURL
(
const
std::string& url)
9
{
10
// JS code to open a new tab with the specified URL
11
EM_ASM({
12
var url = UTF8ToString($0);
13
window.open(url,
'_blank'
);
14
}, url.c_str());
15
}
16
}
17
18
#endif
Platform.h
Elevate::Platform
Definition
Platform.h:5
Elevate::Platform::OpenURL
void OpenURL(const std::string &url)
ElevateEngine
src
Platform
Web
WebPlatform.cpp
Generated by
1.9.8