10 lines
No EOL
230 B
C#
10 lines
No EOL
230 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MLAPI.Profiling
|
|
{
|
|
public interface ITransportProfilerData
|
|
{
|
|
void BeginNewTick();
|
|
IReadOnlyDictionary<string, int> GetTransportProfilerData();
|
|
}
|
|
} |