You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb thomas.sarkanen #preflight 627be6e9a85e625d6f6da85a #ROBOMERGE-OWNER: keith.yerex #ROBOMERGE-AUTHOR: keith.yerex #ROBOMERGE-SOURCE: CL 20151054 via CL 20152640 via CL 20153506 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v943-19904690) [CL 20157277 by keith yerex in ue5-main branch]
21 lines
531 B
C++
21 lines
531 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Widgets/SCompoundWidget.h"
|
|
|
|
// Interface class for views of recorded debug data
|
|
class REWINDDEBUGGERINTERFACE_API IRewindDebuggerView : public SCompoundWidget
|
|
{
|
|
public:
|
|
// unique name for widget
|
|
virtual FName GetName() const = 0;
|
|
|
|
// id of target object
|
|
virtual uint64 GetObjectId() const = 0;
|
|
|
|
// called by the debugger when the scrubbing bar position changes
|
|
virtual void SetTimeMarker(double InTimeMarker) = 0;
|
|
};
|