mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
22 lines
767 B
C++
22 lines
767 B
C++
#include "PrimitiveStatsProfilingHelper.h"
|
|
|
|
void UPrimitiveStatsProfilingHelper::PrintPrimitiveCaptureToLog(TMap<FString, float> InCapture) {
|
|
}
|
|
|
|
void UPrimitiveStatsProfilingHelper::PrintPrimitiveCaptureToCsv(TMap<FString, float> InCapture, const FString& InFilename, const FString& OptionalCaptureName) {
|
|
}
|
|
|
|
void UPrimitiveStatsProfilingHelper::FinalizePrimitiveCaptureCsv(const FString& InFilename) {
|
|
}
|
|
|
|
void UPrimitiveStatsProfilingHelper::EnablePrimitiveStatsCapture() {
|
|
}
|
|
|
|
TMap<FString, float> UPrimitiveStatsProfilingHelper::CapturePrimitiveValues(TMap<FString, float> InPrevCapture, TMap<FString, float>& OutComparison, TArray<FString> DesiredStats) {
|
|
return TMap<FString, float>();
|
|
}
|
|
|
|
UPrimitiveStatsProfilingHelper::UPrimitiveStatsProfilingHelper() {
|
|
}
|
|
|