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

26 lines
791 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "VanityMasterySettings.generated.h"
USTRUCT(BlueprintType)
struct FVanityMasterySettings {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 TotalMasteryLevels;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 XP_RequiredPerLevel;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 XP_ForCreditSpent;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 XP_ForMineralSpent;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 FashionitesLevelUpReward;
FSD_API FVanityMasterySettings();
};