20 lines
354 B
C++
20 lines
354 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "AjaMediaOutputModule.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "AjaMediaOutput"
|
|
|
|
DEFINE_LOG_CATEGORY(LogAjaMediaOutput);
|
|
|
|
void FAjaMediaOutputModule::StartupModule()
|
|
{
|
|
}
|
|
|
|
void FAjaMediaOutputModule::ShutdownModule()
|
|
{
|
|
}
|
|
|
|
IMPLEMENT_MODULE(FAjaMediaOutputModule, AjaMediaOutput )
|
|
|
|
#undef LOCTEXT_NAMESPACE
|