Elevate Engine 1
Loading...
Searching...
No Matches
WebPlatform.cpp
Go to the documentation of this file.
2
3#ifdef EE_PLATFORM_WEB
4#include <emscripten.h>
5
6namespace 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
void OpenURL(const std::string &url)