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

16 lines
329 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "LerpingPercent.generated.h"
USTRUCT(BlueprintType)
struct FLerpingPercent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
uint8 TargetPercent;
public:
FSD_API FLerpingPercent();
};