17 lines
417 B
C++
17 lines
417 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Perception/AISenseConfig_Damage.h"
|
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(AISenseConfig_Damage)
|
|
|
|
UAISenseConfig_Damage::UAISenseConfig_Damage(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer)
|
|
{
|
|
DebugColor = FColor::Red;
|
|
}
|
|
|
|
TSubclassOf<UAISense> UAISenseConfig_Damage::GetSenseImplementation() const
|
|
{
|
|
return Implementation;
|
|
}
|
|
|