You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-123745 #rb helen.yang #preflight 6138d986d9c85a0001815063 [CL 17460375 by phil popp in ue5-main branch]
23 lines
444 B
C++
23 lines
444 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
namespace Metasound
|
|
{
|
|
class METASOUNDENGINETEST_API FMetasoundEngineTestModule : public IModuleInterface
|
|
{
|
|
public:
|
|
virtual void StartupModule() override
|
|
{
|
|
FModuleManager::Get().LoadModuleChecked("MetasoundEngine");
|
|
}
|
|
};
|
|
}
|
|
|
|
IMPLEMENT_MODULE(Metasound::FMetasoundEngineTestModule, MetasoundEngineTest);
|
|
|
|
|
|
|
|
|