mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
8 lines
216 B
C++
8 lines
216 B
C++
#include "Teleporter.h"
|
|
#include "PlaceLauncher.h"
|
|
|
|
void Teleporter::teleportImpl(std::string url, std::string ticket, std::string script)
|
|
{
|
|
PlaceLauncher::getPlaceLauncher().teleport(ticket, url, script);
|
|
}
|