mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 03:02:22 +01:00
21 lines
513 B
C++
21 lines
513 B
C++
#include "CheatManager.h"
|
|
|
|
#include "reboot.h"
|
|
|
|
void UCheatManager::Teleport()
|
|
{
|
|
static auto TeleportFn = FindObject<UFunction>(L"/Script/Engine.CheatManager.Teleport");
|
|
this->ProcessEvent(TeleportFn);
|
|
}
|
|
|
|
void UCheatManager::DestroyTarget()
|
|
{
|
|
static auto DestroyTargetFn = FindObject<UFunction>("/Script/Engine.CheatManager.DestroyTarget");
|
|
this->ProcessEvent(DestroyTargetFn);
|
|
}
|
|
|
|
UClass* UCheatManager::StaticClass()
|
|
{
|
|
static auto Class = FindObject<UClass>(L"/Script/Engine.CheatManager");
|
|
return Class;
|
|
} |