mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
code consistency, added 2.2, added cheat op and deop, proper loot tiers according to playlist, improved performance
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);
|
|
}
|
|
}; |