You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira UE-150418 #rnx #preflight 6269c8094114e1869ccbe063 [CL 19949438 by phil popp in ue5-main branch]
25 lines
579 B
C++
25 lines
579 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("MetasoundFrontend");
|
|
FModuleManager::Get().LoadModuleChecked("MetasoundStandardNodes");
|
|
FModuleManager::Get().LoadModuleChecked("MetasoundEngine");
|
|
}
|
|
};
|
|
}
|
|
|
|
IMPLEMENT_MODULE(Metasound::FMetasoundEngineTestModule, MetasoundEngineTest);
|
|
|
|
|
|
|
|
|