21 lines
539 B
C++
Executable file
21 lines
539 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Templates/SubclassOf.h"
|
|
#include "VanityTestCharacterItem.generated.h"
|
|
|
|
class USkeletalMesh;
|
|
class UVanityAnimInstance;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FVanityTestCharacterItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
USkeletalMesh* Mesh;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSubclassOf<UVanityAnimInstance> AnimBP;
|
|
|
|
FSD_API FVanityTestCharacterItem();
|
|
};
|
|
|