22 lines
562 B
C
22 lines
562 B
C
|
|
// Copyright 2022 Just2Devs. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include "CoreMinimal.h"
|
|||
|
|
#include "K2Node_WidgetSlotCast.h"
|
|||
|
|
#include "K2Node_WidgetGridSlotCast.generated.h"
|
|||
|
|
|
|||
|
|
UCLASS(BlueprintType)
|
|||
|
|
class WIDGETFUNCTIONLIBRARYEDITOR_API UK2Node_WidgetGridSlotCast : public UK2Node_WidgetSlotCast
|
|||
|
|
{
|
|||
|
|
GENERATED_BODY()
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
UK2Node_WidgetGridSlotCast()
|
|||
|
|
{
|
|||
|
|
FunctionNodeTitle = FName("Cast To Grid Slot");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
virtual void ExpandNode(FKismetCompilerContext& CompilerContext, UEdGraph* SourceGraph) override;
|
|||
|
|
virtual void AllocateDefaultPins() override;
|
|||
|
|
};
|