17 lines
383 B
C++
Executable file
17 lines
383 B
C++
Executable file
#include "ProfilingSubSystem.h"
|
|
|
|
float UProfilingSubSystem::GetTotalTime() const {
|
|
return 0.0f;
|
|
}
|
|
|
|
TArray<FProfileEntry> UProfilingSubSystem::GetEntries() const {
|
|
return TArray<FProfileEntry>();
|
|
}
|
|
|
|
TArray<FProfileCategoryTiming> UProfilingSubSystem::GetCategoryTimings() const {
|
|
return TArray<FProfileCategoryTiming>();
|
|
}
|
|
|
|
UProfilingSubSystem::UProfilingSubSystem() {
|
|
}
|
|
|