Files
Project-Reboot-3.0/Project Reboot 3.0/CheatManager.cpp
Milxnor 6daab8d5a2 a bit
fix restarting, add cheat teleport and help, build free and infinite ammo, fix restarting on c1,  fix some gui issues.
2023-04-17 21:05:08 -04:00

15 lines
333 B
C++

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