Files
UnrealEngine/Engine/Source/Editor/GraphEditor/Private/KismetNodes/SGraphNodeK2Default.cpp
2025-05-18 13:04:45 +08:00

19 lines
374 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "KismetNodes/SGraphNodeK2Default.h"
#include "GenericPlatform/ICursor.h"
#include "K2Node.h"
#include "Misc/Optional.h"
void SGraphNodeK2Default::Construct( const FArguments& InArgs, UK2Node* InNode )
{
this->GraphNode = InNode;
this->SetCursor( EMouseCursor::CardinalCross );
this->UpdateGraphNode();
}