DRG-Femboy-Voice/Source/FSD/Private/EscortMuleAIController.cpp
2025-04-15 12:39:31 -07:00

29 lines
635 B
C++
Executable file

#include "EscortMuleAIController.h"
void AEscortMuleAIController::SetDozerNextPathSegment() {
}
TArray<FVector> AEscortMuleAIController::GetPathForDebug(int32 Segment) {
return TArray<FVector>();
}
FVector AEscortMuleAIController::GetPathEndTagent() {
return FVector{};
}
void AEscortMuleAIController::GetFullPath(TArray<FVector>& outPath) const {
}
void AEscortMuleAIController::FindDozerPath(FVector StartPosition) {
}
AEscortMuleAIController::AEscortMuleAIController() {
this->PathIndex = 0;
this->CurrentRoom = 0;
this->EscortObj = NULL;
this->TunnelStartIndex = 0;
this->TunnelEndIndex = 0;
}