18 lines
527 B
C++
18 lines
527 B
C++
// Copyright 2022 Just2Devs. All Rights Reserved.
|
|
|
|
#include "K2Node_WidgetWrapBoxSlotCast.h"
|
|
#include "WidgetFL.h"
|
|
#include "Components/WrapBoxSlot.h"
|
|
|
|
void UK2Node_WidgetWrapBoxSlotCast::ExpandNode(FKismetCompilerContext& CompilerContext, UEdGraph* SourceGraph)
|
|
{
|
|
FunctionName = GET_MEMBER_NAME_CHECKED(UWidgetFL, CastWrapBoxSlot);
|
|
Super::ExpandNode(CompilerContext, SourceGraph);
|
|
}
|
|
|
|
void UK2Node_WidgetWrapBoxSlotCast::AllocateDefaultPins()
|
|
{
|
|
PinSlotType = UWrapBoxSlot::StaticClass();
|
|
Super::AllocateDefaultPins();
|
|
}
|