Files
UnrealEngineUWP/Engine/Source/Runtime/AudioCodecEngine/Private/AudioCodecEngineModule.cpp
jake burga bef1a140e8 delete BackCompat decoders
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]
2023-12-06 11:17:11 -05:00

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);