You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb ionut.matasaru #preflight 639723c59549ddaa285724f3 [CL 23476968 by Andriy Tylychko in ue5-main branch]
15 lines
469 B
C++
15 lines
469 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "VisualizerEvents.h"
|
|
|
|
class IProfileVisualizerModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
virtual void DisplayProfileVisualizer( TSharedPtr< FVisualizerEvent > InProfileData, const TCHAR* InProfilerType, const FText& HeaderMessageText = FText::GetEmpty(), const FLinearColor& HeaderMessageTextColor = FLinearColor::White ) = 0;
|
|
};
|