19 lines
452 B
C++
Executable file
19 lines
452 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EquippedVanity.generated.h"
|
|
|
|
class UVanityItem;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FEquippedVanity {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<UVanityItem*> Vanity;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UVanityItem* SelectedArmorMaterial;
|
|
|
|
FSD_API FEquippedVanity();
|
|
};
|
|
|