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

21 lines
586 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "VanityMasterySave.h"
#include "VanityMasteryResult.generated.h"
USTRUCT(BlueprintType)
struct FVanityMasteryResult {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FVanityMasterySave Previous;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FVanityMasterySave Current;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 FashionitesRewarded;
FSD_API FVanityMasteryResult();
};