mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
19 lines
672 B
C++
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() {
|
|
}
|
|
|