You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-89731 #rb marc.audy #ROBOMERGE-SOURCE: CL 11703390 in //UE4/Release-4.25/... via CL 11703446 #ROBOMERGE-BOT: RELEASE (Release-4.25Plus -> Main) (v656-11643781) [CL 11703551 by michael noland in Main branch]
23 lines
580 B
C++
23 lines
580 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "K2Node_BaseAsyncTask.h"
|
|
#include "K2Node_AsyncAction.generated.h"
|
|
|
|
class FBlueprintActionDatabaseRegistrar;
|
|
|
|
/** !!! The proxy object should have RF_StrongRefOnFrame flag. !!! */
|
|
|
|
UCLASS()
|
|
class BLUEPRINTGRAPH_API UK2Node_AsyncAction : public UK2Node_BaseAsyncTask
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
// UK2Node interface
|
|
virtual void GetMenuActions(FBlueprintActionDatabaseRegistrar& ActionRegistrar) const override;
|
|
// End of UK2Node interface
|
|
};
|