Files
Project-Reboot-3.0/Project Reboot 3.0/CheatManager.cpp
Milxnor 5e6d120c09 lategame
lategame pretty much working, work on some string stuff, some memory optimizations, summon should now work with non-bps
2023-06-03 15:01:24 -04:00

15 lines
335 B
C++

#include "CheatManager.h"
#include "reboot.h"
void UCheatManager::Teleport()
{
static auto TeleportFn = FindObject<UFunction>(L"/Script/Engine.CheatManager.Teleport");
this->ProcessEvent(TeleportFn);
}
UClass* UCheatManager::StaticClass()
{
static auto Class = FindObject<UClass>(L"/Script/Engine.CheatManager");
return Class;
}