mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
28 lines
793 B
C++
28 lines
793 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "McpVariantChannelInfo.h"
|
|
#include "Components/DynamicEntryBox.h"
|
|
#include "FortVariantEntryBox.generated.h"
|
|
|
|
class UAthenaCosmeticAccountItem;
|
|
class UAthenaCosmeticItemDefinition;
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortVariantEntryBox : public UDynamicEntryBox {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UAthenaCosmeticAccountItem* CurrentItem;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UAthenaCosmeticItemDefinition* CurrentItemDef;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FMcpVariantChannelInfo> CurrentItemVariants;
|
|
|
|
public:
|
|
// UFortVariantEntryBox();
|
|
};
|
|
|