Files
UnrealEngineUWP/Engine/Plugins/Runtime/Metasound/Source/MetasoundFrontend/Private/Analysis/MetasoundFrontendVertexAnalyzerValue.cpp

22 lines
643 B
C++
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Analysis/MetasoundFrontendVertexAnalyzerValue.h"
#include "Analysis/MetasoundFrontendAnalyzerAddress.h"
#include "MetasoundDataReference.h"
#include "MetasoundPrimitives.h"
#include "MetasoundRouter.h"
#include "MetasoundTrigger.h"
namespace Metasound
{
namespace Frontend
{
METASOUND_DEFINE_VALUE_ANALYZER(FVertexAnalyzerBool, bool)
METASOUND_DEFINE_VALUE_ANALYZER(FVertexAnalyzerFloat, float)
METASOUND_DEFINE_VALUE_ANALYZER(FVertexAnalyzerInt, int32)
METASOUND_DEFINE_VALUE_ANALYZER(FVertexAnalyzerString, FString)
} // namespace Frontend
} // namespace Metasound