Files
Project-Reboot-3.0/Project Reboot 3.0/Pawn.h
2023-03-08 01:39:09 -05:00

13 lines
200 B
C++

#pragma once
#include "Actor.h"
class APawn : public AActor
{
public:
UObject* GetPlayerState()
{
static auto PlayerStateOffset = GetOffset("PlayerState");
return Get(PlayerStateOffset);
}
};