You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ROBOMERGE-SOURCE: CL 15619052 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v777-15581079) [CL 15619065 by maxwell hayes in ue5-main branch]
26 lines
615 B
C++
26 lines
615 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "MetasoundGain.h"
|
|
#include "MetasoundGraphCoreModule.h"
|
|
#include "MetasoundPrimitives.h"
|
|
#include "MetasoundTime.h"
|
|
#include "MetasoundTrigger.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
|
|
namespace Metasound
|
|
{
|
|
class FMetasoundStandardNodesModule : public IMetasoundGraphCoreModule
|
|
{
|
|
virtual void StartupModule() override
|
|
{
|
|
FMetasoundFrontendRegistryContainer::Get()->RegisterPendingNodes();
|
|
}
|
|
};
|
|
}
|
|
|
|
IMPLEMENT_MODULE(Metasound::FMetasoundStandardNodesModule, MetasoundStandardNodes);
|
|
|