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

20 lines
527 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ChallengeVariation.generated.h"
USTRUCT(BlueprintType)
struct FChallengeVariation {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 NumberOfWins;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 XPCompleteGain;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 TokenGain;
FSD_API FChallengeVariation();
};