You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-123975 #rb phil.popp #preflight 61b196c7e0430ca438a95533 #ROBOMERGE-AUTHOR: jimmy.smith #ROBOMERGE-SOURCE: CL 18416580 in //UE5/Release-5.0/... via CL 18416585 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v897-18405271) [CL 18416586 by jimmy smith in ue5-release-engine-test branch]
22 lines
403 B
C++
22 lines
403 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "AudioLinkLog.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
DEFINE_LOG_CATEGORY(LogAudioLink);
|
|
|
|
class FAudioLinkModule : public IModuleInterface
|
|
{
|
|
public:
|
|
// Begin IModuleInterface
|
|
virtual void StartupModule() override
|
|
{
|
|
}
|
|
virtual void ShutdownModule() override
|
|
{
|
|
}
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FAudioLinkModule, AudioLink);
|