You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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);
|