25 lines
396 B
C++
25 lines
396 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "WingHandler.h"
|
|
#include "WingPinReference.generated.h"
|
|
|
|
class UEdGraphNode;
|
|
class UEdGraphPin;
|
|
|
|
UCLASS()
|
|
class UWingPinReference : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UPROPERTY()
|
|
UEdGraphNode* Node = nullptr;
|
|
|
|
FName PinName;
|
|
|
|
UEdGraphPin* GetPin() const;
|
|
UEdGraphPin* CheckGetPin(WingOut Errors) const;
|
|
};
|