You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Removed few other includes as well #rb Yoan.StAmant [CL 30692362 by aris theophanidis in ue5-main branch]
18 lines
391 B
C++
18 lines
391 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 "GameFramework/Actor.h"
|
|
|
|
#include "NavigationGraphNode.generated.h"
|
|
|
|
UCLASS(config=Engine, MinimalAPI, NotBlueprintable, abstract)
|
|
class ANavigationGraphNode : public AActor
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
};
|