Files
FNGameProj/Source/FortniteGame/Private/MemoryStatsProfilingHelper.cpp
T
2024-03-03 23:44:39 +01:00

19 lines
672 B
C++

#include "MemoryStatsProfilingHelper.h"
void UMemoryStatsProfilingHelper::PrintMemoryCaptureToLog(TMap<FString, float> InCapture, bool bCaptureIsInMB) {
}
void UMemoryStatsProfilingHelper::PrintMemoryCaptureToCsv(TMap<FString, float> InCapture, const FString& InFilename, const FString& OptionalCaptureName) {
}
void UMemoryStatsProfilingHelper::FinalizeMemoryCaptureCsv(const FString& InFilename) {
}
TMap<FString, float> UMemoryStatsProfilingHelper::CaptureMemoryValues(TMap<FString, float> InPrevCapture, TMap<FString, float>& OutComparison, bool bConvertToMB) {
return TMap<FString, float>();
}
UMemoryStatsProfilingHelper::UMemoryStatsProfilingHelper() {
}