Files
UnrealEngine/Engine/Plugins/Experimental/AnimNext/Source/AnimNextUncookedOnly/Internal/Compilation/AnimNextGetFunctionHeaderCompileContext.h
2025-05-18 13:04:45 +08:00

24 lines
621 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Compilation/AnimNextRigVMAssetCompileContext.h"
/**
* Struct holding temporary compilation info during function header population
*/
struct ANIMNEXTUNCOOKEDONLY_API FAnimNextGetFunctionHeaderCompileContext
{
FAnimNextGetFunctionHeaderCompileContext(FAnimNextRigVMAssetCompileContext& InCompilerContext);
public:
const TArray<FAnimNextProgrammaticFunctionHeader>& GetFunctionHeaders() const;
TArray<FAnimNextProgrammaticFunctionHeader>& GetMutableFunctionHeaders();
protected:
FAnimNextRigVMAssetCompileContext& CompilerContext;
};