You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-160862 #preflight 63191b1cb069eea9ab594ea2 #rb andrew.davidson [CL 21974045 by dave jones2 in ue5-main branch]
13 lines
367 B
C++
13 lines
367 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "K2Node_AddPinInterface.h"
|
|
|
|
#include "Containers/UnrealString.h"
|
|
#include "Misc/AssertionMacros.h"
|
|
|
|
FName IK2Node_AddPinInterface::GetNameForAdditionalPin(int32 PinIndex)
|
|
{
|
|
check(PinIndex < GetMaxInputPinsNum());
|
|
const FName Name(*FString::Chr(TCHAR('A') + static_cast<TCHAR>(PinIndex)));
|
|
return Name;
|
|
} |