Add support for displaying all active Network Peer stats in Editor Profiler tab

This commit is contained in:
Wojtek Figat
2023-09-25 16:49:18 +02:00
parent a672f6aa6b
commit 216a5e9f92
4 changed files with 12 additions and 7 deletions

View File

@@ -8,9 +8,10 @@
#include "Engine/Platform/CPUInfo.h"
#include "Engine/Profiler/ProfilerCPU.h"
Array<NetworkPeer*> NetworkPeer::Peers;
namespace
{
Array<NetworkPeer*, HeapAllocation> Peers;
uint32 LastHostId = 0;
}