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

14 lines
330 B
C++

#pragma once
#include "reboot.h"
#include "FortPlayerController.h"
class UFortAthenaAISpawnerDataComponent_CosmeticLoadout : public UObject
{
public:
FFortAthenaLoadout* GetCosmeticLoadout()
{
static auto CosmeticLoadoutOffset = GetOffset("CosmeticLoadout");
return GetPtr<FFortAthenaLoadout>(CosmeticLoadoutOffset);
}
};