You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
24 lines
697 B
C
24 lines
697 B
C
|
|
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "SGraphNodeDefault.h"
|
||
|
|
#include "K2Node_Knot.h"
|
||
|
|
|
||
|
|
class SGraphNodeKnot : public SGraphNodeDefault
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SLATE_BEGIN_ARGS(SGraphNodeKnot) {}
|
||
|
|
SLATE_END_ARGS()
|
||
|
|
|
||
|
|
void Construct(const FArguments& InArgs, class UK2Node_Knot* InKnot);
|
||
|
|
|
||
|
|
// SGraphNode interface
|
||
|
|
virtual void UpdateGraphNode() OVERRIDE;
|
||
|
|
virtual const FSlateBrush* GetShadowBrush(bool bSelected) const OVERRIDE;
|
||
|
|
virtual TSharedPtr<SGraphPin> CreatePinWidget(UEdGraphPin* Pin) const OVERRIDE;
|
||
|
|
virtual void AddPin(const TSharedRef<SGraphPin>& PinToAdd) OVERRIDE;
|
||
|
|
virtual void RequestRenameOnSpawn() OVERRIDE { }
|
||
|
|
// End of SGraphNode interface
|
||
|
|
};
|