mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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();
|
|
};
|
|
|