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

15 lines
323 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "TunnelPath.generated.h"
USTRUCT(BlueprintType)
struct FTunnelPath {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<FVector> Path;
FSD_API FTunnelPath();
};