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

18 lines
473 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "PlacementObstruction.generated.h"
USTRUCT(BlueprintType)
struct FPlacementObstruction {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
float range;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FVector Location;
FSD_API FPlacementObstruction();
};