Files
UnrealEngine/Engine/Plugins/Animation/GameplayInsights/Source/RewindDebugger/Private/RewindDebuggerViewCreators.h
2025-05-18 13:04:45 +08:00

20 lines
445 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "IRewindDebuggerView.h"
#include "IRewindDebuggerViewCreator.h"
namespace TraceServices
{
class IRewindDebuggerViewCreator;
}
class FRewindDebuggerViewCreators
{
public:
static void EnumerateCreators(TFunctionRef<void(const IRewindDebuggerViewCreator*)> Callback);
static const IRewindDebuggerViewCreator* GetCreator(FName CreatorName);
};