// 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" REGISTER_METASOUND_DATATYPE(Metasound::FTrigger, "Trigger", ::Metasound::ELiteralType::Boolean) REGISTER_METASOUND_DATATYPE(Metasound::FTime, "Time", ::Metasound::ELiteralType::Float) namespace Metasound { class FMetasoundStandardNodesModule : public IMetasoundGraphCoreModule { }; } IMPLEMENT_MODULE(Metasound::FMetasoundStandardNodesModule, MetasoundStandardNodes);