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 #ROBOMERGE-AUTHOR: phil.popp #ROBOMERGE-SOURCE: CL 17460375 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v870-17433530) [CL 17460391 by phil popp in ue5-release-engine-test 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);
|
|
|
|
|
|
|
|
|