13 lines
199 B
C#
13 lines
199 B
C#
namespace Engine.Systems.Network;
|
|
|
|
public interface IConnection
|
|
{
|
|
string Id { get; }
|
|
|
|
float Ping { get; }
|
|
float RoundTrip { get; }
|
|
|
|
int PingMs { get; }
|
|
int RoundTripMs { get; }
|
|
}
|