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

22 lines
579 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SDFBase.h"
#include "SDFSmoothingProperties.h"
#include "SDFSubOp.generated.h"
UCLASS(Blueprintable)
class FSDENGINE_API USDFSubOp : public USDFBase {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FSDFSmoothingProperties Properties;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USDFBase* A;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USDFBase* B;
USDFSubOp();
};