Files
UnrealEngineUWP/Engine/Source/Runtime/NavigationSystem/Public/NavGraph/NavigationGraphNodeComponent.h
Zousar Shaker 3b4c8fc1c5 Automated wrapped object pointer upgrade for Engine + ShooterGame + ShooterGame referenced plugins
#rb none

[CL 15224650 by Zousar Shaker in ue5-main branch]
2021-01-27 17:40:25 -04:00

28 lines
664 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Components/SceneComponent.h"
#include "NavGraph/NavigationGraph.h"
#include "NavigationGraphNodeComponent.generated.h"
UCLASS(config=Engine, MinimalAPI, HideCategories=(Mobility))
class UNavigationGraphNodeComponent : public USceneComponent
{
GENERATED_UCLASS_BODY()
UPROPERTY()
FNavGraphNode Node;
UPROPERTY()
TObjectPtr<UNavigationGraphNodeComponent> NextNodeComponent;
UPROPERTY()
TObjectPtr<UNavigationGraphNodeComponent> PrevNodeComponent;
//~ Begin UObject Interface.
virtual void BeginDestroy() override;
};