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

18 lines
420 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Curves/RichCurve.h"
#include "WeakpointTask.generated.h"
USTRUCT(BlueprintType)
struct FWeakpointTask {
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FRichCurve GrowCurve;
UPROPERTY(EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FRichCurve FadeCurve;
FSD_API FWeakpointTask();
};