Files
UnrealEngineUWP/Engine/Source/Editor/UnrealEd/Private/SoundCueGraph.cpp
2014-03-14 14:13:41 -04:00

18 lines
382 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/////////////////////////////////////////////////////
// USoundCueGraph
#include "UnrealEd.h"
#include "SoundDefinitions.h"
USoundCueGraph::USoundCueGraph(const FPostConstructInitializeProperties& PCIP)
: Super(PCIP)
{
}
USoundCue* USoundCueGraph::GetSoundCue() const
{
return CastChecked<USoundCue>(GetOuter());
}