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

17 lines
420 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "PostProcessingBlendable.generated.h"
class IBlendableInterface;
class UBlendableInterface;
USTRUCT(BlueprintType)
struct FPostProcessingBlendable {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
TScriptInterface<IBlendableInterface> Blendable;
FSD_API FPostProcessingBlendable();
};