You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
499 B
C
20 lines
499 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
||
|
|
#include "SGraphNodeComment.h"
|
||
|
|
|
||
|
|
namespace Metasound
|
||
|
|
{
|
||
|
|
namespace Editor
|
||
|
|
{
|
||
|
|
class SMetasoundGraphNodeComment : public SGraphNodeComment
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
// SNodePanel::SNode interface
|
||
|
|
virtual void MoveTo(const FVector2D& NewPosition, FNodeSet& NodeFilter, bool bMarkDirty = true) override;
|
||
|
|
// End of SNodePanel::SNode interface
|
||
|
|
};
|
||
|
|
} // namespace Editor
|
||
|
|
} // namespace Metasound
|