refactor: connection ping & round trip in milliseconds properties added

This commit is contained in:
2025-07-06 20:09:25 +03:00
parent a76905f31e
commit 22f96458a6
3 changed files with 13 additions and 1 deletions

View File

@@ -3,6 +3,10 @@ namespace Syntriax.Engine.Network;
public interface IConnection
{
string Id { get; }
float Ping { get; }
float RoundTrip { get; }
int PingMs { get; }
int RoundTripMs { get; }
}