17 lines
295 B
C++
17 lines
295 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "MuCOE/CustomizableObjectPin.h"
|
|
|
|
#include "EdGraph/EdGraphPin.h"
|
|
|
|
bool IsPinOrphan(const UEdGraphPin &Pin)
|
|
{
|
|
return Pin.bOrphanedPin;
|
|
}
|
|
|
|
|
|
void OrphanPin(UEdGraphPin& Pin)
|
|
{
|
|
Pin.bOrphanedPin = true;
|
|
Pin.SetSavePinIfOrphaned(true);
|
|
} |