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

18 lines
434 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "ScanPath.generated.h"
USTRUCT(BlueprintType)
struct FScanPath {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FVector Start;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FVector End;
FSD_API FScanPath();
};