DRG-Femboy-Voice/Source/FSD/Public/VanityTestCharacterItem.h
2025-04-15 12:39:31 -07:00

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();
};