14 lines
418 B
C++
14 lines
418 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "DetourCrowdAIController.h"
|
|
#include "Navigation/CrowdFollowingComponent.h"
|
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(DetourCrowdAIController)
|
|
|
|
ADetourCrowdAIController::ADetourCrowdAIController(const FObjectInitializer& ObjectInitializer)
|
|
: Super(ObjectInitializer.SetDefaultSubobjectClass<UCrowdFollowingComponent>(TEXT("PathFollowingComponent")))
|
|
{
|
|
|
|
}
|
|
|