You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Ethan.Geller, Maxwell.Hayes #ROBOMERGE-SOURCE: CL 11285078 via CL 11285087 #ROBOMERGE-BOT: (v647-11244347) [CL 11285092 by phil popp in Main branch]
18 lines
413 B
C++
18 lines
413 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "AudioMixerModule.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
class FAudioMixerModule : public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
virtual void StartupModule() override
|
|
{
|
|
FModuleManager::Get().LoadModuleChecked(TEXT("AudioMixerCore"));
|
|
FModuleManager::Get().LoadModuleChecked(TEXT("SignalProcessing"));
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FAudioMixerModule, AudioMixer);
|