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

15 lines
349 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "PathfinderDebugProbe.generated.h"
UCLASS(Blueprintable)
class APathfinderDebugProbe : public AActor {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
AActor* Dest;
APathfinderDebugProbe();
};