Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

24 lines
527 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimNextStateTreeFunctionLibraryHelper.generated.h"
struct FRigVMGraphFunctionHeader;
/**
* Helper class for using RigVM functions in ST
*
* Currently used for GetOptions funciton population
*/
UCLASS()
class UAFSTATETREEUNCOOKEDONLY_API UAnimNextStateTreeFunctionLibraryHelper : public UObject
{
GENERATED_BODY()
public:
// Get list of function names in module
UFUNCTION()
static const TArray<FName> GetExposedAnimNextFunctionNames();
};