mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
639 B
C++
27 lines
639 B
C++
#include "AutomationPerfMonitorManager.h"
|
|
|
|
void UAutomationPerfMonitorManager::StopRecordingFTestPerf() {
|
|
}
|
|
|
|
void UAutomationPerfMonitorManager::StartRecordingFTestPerf(TArray<FString> StatsToRecord) {
|
|
}
|
|
|
|
bool UAutomationPerfMonitorManager::IsRecordingFTestPerf() {
|
|
return false;
|
|
}
|
|
|
|
float UAutomationPerfMonitorManager::GetStatAverage(const FString& StatName) {
|
|
return 0.0f;
|
|
}
|
|
|
|
UAutomationPerfMonitorManager* UAutomationPerfMonitorManager::GetPerfMonitorInstance() {
|
|
return NULL;
|
|
}
|
|
|
|
UAutomationPerfMonitorManager::UAutomationPerfMonitorManager() {
|
|
bRecording = false;
|
|
TimeSinceLastRecord = 1;
|
|
LastGoodFrame = 0;
|
|
}
|
|
|