mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
13 lines
243 B
C++
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);
|
|
}
|
|
}; |