mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
20 lines
717 B
C++
20 lines
717 B
C++
#include "CreativeProfilingHelper.h"
|
|
|
|
void UCreativeProfilingHelper::PrintThermometerCaptureToLog(FCreativePerfCost InCapture, const FString& CaptureName) {
|
|
}
|
|
|
|
void UCreativeProfilingHelper::PrintThermometerCaptureToCsv(FCreativePerfCost InCapture, const FString& InFilename, const FString& OptionalCaptureName) {
|
|
}
|
|
|
|
FCreativePerfCost UCreativeProfilingHelper::CaptureOverallThermometerValue(float InPrevCapture, float& OutComparison, EFortBudgetCategory Category) {
|
|
return FCreativePerfCost{};
|
|
}
|
|
|
|
FCreativePerfCost UCreativeProfilingHelper::CaptureActorThermometerValue(AActor* InActor, EFortBudgetCategory Category) {
|
|
return FCreativePerfCost{};
|
|
}
|
|
|
|
UCreativeProfilingHelper::UCreativeProfilingHelper() {
|
|
}
|
|
|