mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
fix restarting, add cheat teleport and help, build free and infinite ammo, fix restarting on c1, fix some gui issues.
15 lines
333 B
C++
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;
|
|
} |