Files
UnrealEngineUWP/Engine/Source/Runtime/Android/AudioMixerAndroid/Private/AudioMixerAndroid.cpp
Rolando Caloca 31828e2cac Merging //UE4/Dev-Main@8580251 to Dev-RenderPlat-Staging
#rb none
#rnx

[CL 8614298 by Rolando Caloca in Dev-RenderPlat-Staging branch]
2019-09-10 12:20:29 -04:00

19 lines
507 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "AudioMixer.h"
#include "AudioMixerPlatformAndroid.h"
#include "Modules/ModuleManager.h"
class FAudioMixerModuleAndroid : public IAudioDeviceModule
{
public:
virtual bool IsAudioMixerModule() const override { return true; }
virtual Audio::IAudioMixerPlatformInterface* CreateAudioMixerPlatformInterface() override
{
return new Audio::FMixerPlatformAndroid();
}
};
IMPLEMENT_MODULE(FAudioMixerModuleAndroid, AudioMixerAndroid);