You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Eventually move SoundWaveProxyReader out of AudioCodecEngine plugin, and delete AudioCodecEngine plugin entirely. [REVIEW] [at]jimmy.smith #rb jimmy.smith #tests PIE [CL 30157061 by jake burga in ue5-main branch]
23 lines
401 B
C++
23 lines
401 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
#include "IAudioCodecRegistry.h"
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
class FAudioCodecEngineModule : public IModuleInterface
|
|
{
|
|
public:
|
|
void StartupModule() override
|
|
{
|
|
}
|
|
void ShutdownModule() override
|
|
{
|
|
}
|
|
};
|
|
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
|
|
|
IMPLEMENT_MODULE(FAudioCodecEngineModule, AudioCodecEngine);
|