You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Misc clean-up #rb phil.popp #rnx [FYI] helen.yang #jira UE-216029 [CL 34017798 by rob gay in ue5-main branch]
27 lines
846 B
C++
27 lines
846 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "Containers/UnrealString.h"
|
|
#include "MetasoundDocumentInterface.h"
|
|
#include "MetasoundFrontendController.h"
|
|
#include "MetasoundFrontendTransform.h"
|
|
#include "MetasoundFrontendDocument.h"
|
|
#include "UObject/NameTypes.h"
|
|
#include "UObject/ScriptInterface.h"
|
|
|
|
class IMetaSoundDocumentInterface;
|
|
struct FMetaSoundFrontendDocumentBuilder;
|
|
|
|
|
|
namespace Metasound::Frontend
|
|
{
|
|
static FMetasoundFrontendVersionNumber GetMaxDocumentVersion()
|
|
{
|
|
return FMetasoundFrontendVersionNumber { 1, 12 };
|
|
}
|
|
|
|
// Versions Frontend Document. Passed as AssetBase for backward compat to
|
|
// version asset documents predating the IMetaSoundDocumentInterface
|
|
bool VersionDocument(FMetasoundAssetBase& InAssetBase, FMetaSoundFrontendDocumentBuilder& Builder);
|
|
} // namespace Metasound::Frontend
|