Files
UnrealEngineUWP/Engine/Source/Editor/GraphEditor/Private/SoundNodes/SGraphNodeSoundBase.h
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

22 lines
535 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
class SGraphNodeSoundBase : public SGraphNode
{
public:
SLATE_BEGIN_ARGS(SGraphNodeSoundBase){}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs, class USoundCueGraphNode* InNode);
protected:
// SGraphNode Interface
virtual void CreateOutputSideAddButton(TSharedPtr<SVerticalBox> OutputBox) override;
virtual EVisibility IsAddPinButtonVisible() const override;
virtual FReply OnAddPin() override;
private:
USoundCueGraphNode* SoundNode;
};