polygone/Library/PackageCache/com.unity.multiplayer.mlapi@3e3aef6aa0/Runtime/Profiling/ITransportProfilerData.cs
2021-08-02 05:44:37 -04:00

10 lines
No EOL
230 B
C#

using System.Collections.Generic;
namespace MLAPI.Profiling
{
public interface ITransportProfilerData
{
void BeginNewTick();
IReadOnlyDictionary<string, int> GetTransportProfilerData();
}
}