<feat: New project structure>

<feat: New release>
This commit is contained in:
Alessandro Autiero
2023-09-02 15:34:15 +02:00
parent 64b33102f4
commit b41e22adeb
953 changed files with 1373072 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
#pragma once
#include "Class.h"
#include "Controller.h"
#include "CheatManager.h"
#include "UnrealString.h"
#include "Rotator.h"
class APlayerController : public AController
{
public:
UCheatManager*& GetCheatManager()
{
static auto CheatManagerOffset = this->GetOffset("CheatManager");
return this->Get<UCheatManager*>(CheatManagerOffset);
}
class UNetConnection*& GetNetConnection()
{
static auto NetConnectionOffset = GetOffset("NetConnection");
return Get<class UNetConnection*>(NetConnectionOffset);
}
void SetPlayerIsWaiting(bool NewValue);
void ServerChangeName(FString& S);
UCheatManager*& SpawnCheatManager(UClass* CheatManagerClass);
FRotator GetControlRotation();
void ServerRestartPlayer();
static UClass* StaticClass();
};