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

14 lines
346 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CSGRandomDisableProperties.generated.h"
USTRUCT(BlueprintType)
struct FCSGRandomDisableProperties {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float DisableProbability;
FSDENGINE_API FCSGRandomDisableProperties();
};