You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira none #ROBOMERGE-SOURCE: CL 17355903 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v865-17346139) [CL 17355907 by rob gay in ue5-release-engine-test branch]
17 lines
382 B
C++
17 lines
382 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#include "IAudioParameterTransmitter.h"
|
|
|
|
#include "AudioParameterInterface.h"
|
|
|
|
namespace Audio
|
|
{
|
|
bool ILegacyParameterTransmitter::GetParameter(FName InName, FAudioParameter& OutValue) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
TArray<UObject*> ILegacyParameterTransmitter::GetReferencedObjects() const
|
|
{
|
|
return { };
|
|
}
|
|
} // namespace Audio
|