16 lines
415 B
C++
Executable file
16 lines
415 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SDFRandomDisableProperties.h"
|
|
#include "SDFSingleChildBase.h"
|
|
#include "SDFRandomDisable.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class USDFRandomDisable : public USDFSingleChildBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FSDFRandomDisableProperties Properties;
|
|
|
|
USDFRandomDisable();
|
|
};
|
|
|