work on 21.00

This commit is contained in:
Gray
2024-03-17 20:48:21 -04:00
parent a9e2cc648a
commit acb311c643
13 changed files with 198 additions and 14 deletions

View File

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