17 lines
361 B
C++
17 lines
361 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#if UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4
|
|
#include "CoreMinimal.h"
|
|
#endif
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "AI/Navigation/NavLinkDefinition.h"
|
|
#include "NavLinkTrivial.generated.h"
|
|
|
|
UCLASS(MinimalAPI)
|
|
class UNavLinkTrivial : public UNavLinkDefinition
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
};
|