Files
UnrealEngineUWP/Engine/Source/Runtime/Android/AudioMixerAndroid/Private/AudioMixerAndroid.cpp
Ethan Geller 205a972856 #jira UE-79691 fix FAudioMixerModuleAndroid so that it overrides IsAudioMixerModule().
#rb none
#fyi aaron.mcleran

[CL 8553007 by Ethan Geller in Main branch]
2019-09-06 13:01:16 -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);