mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 11:12:23 +01:00
13 lines
305 B
C++
13 lines
305 B
C++
#pragma once
|
|
|
|
#include "Object.h"
|
|
|
|
class UFortAthenaAIBotCharacterCustomization : public UObject
|
|
{
|
|
public:
|
|
FFortAthenaLoadout* GetCustomizationLoadout()
|
|
{
|
|
static auto CustomizationLoadoutOffset = GetOffset("CustomizationLoadout");
|
|
return GetPtr<FFortAthenaLoadout>(CustomizationLoadoutOffset);
|
|
}
|
|
}; |