mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
22 lines
442 B
C++
22 lines
442 B
C++
#pragma once
|
|
|
|
#include "Actor.h"
|
|
|
|
class AController : public AActor
|
|
{
|
|
public:
|
|
AActor* GetViewTarget();
|
|
void Possess(class APawn* Pawn);
|
|
|
|
class APawn*& GetPawn()
|
|
{
|
|
static auto PawnOffset = this->GetOffset("Pawn");
|
|
return this->Get<class APawn*>(PawnOffset);
|
|
}
|
|
|
|
class APlayerState*& GetPlayerState()
|
|
{
|
|
static auto PlayerStateOffset = this->GetOffset("PlayerState");
|
|
return this->Get<class APlayerState*>(PlayerStateOffset);
|
|
}
|
|
}; |