Files
Project-Reboot-3.0/Project Reboot 3.0/FortAthenaAISpawnerDataComponent_SpawnParams.h
2024-03-17 20:48:21 -04:00

13 lines
243 B
C++

#pragma once
#include "reboot.h"
class UFortAthenaAISpawnerDataComponent_SpawnParams : public UObject
{
public:
UClass*& GetPawnClass()
{
static auto PawnClassOffset = GetOffset("PawnClass");
return Get<UClass*>(PawnClassOffset);
}
};