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

19 lines
522 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ReflectiveHitscanHit.h"
#include "ScanPath.h"
#include "ReflectionTraceResult.generated.h"
USTRUCT(BlueprintType)
struct FReflectionTraceResult {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
TArray<FScanPath> Path;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FReflectiveHitscanHit FinalHit;
FSD_API FReflectionTraceResult();
};