feat: added networking system

This commit is contained in:
2025-08-05 19:27:27 +03:00
parent 3452194941
commit 6631cae7b0
10 changed files with 427 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace Syntriax.Engine.Systems.Network;
public interface IConnection
{
string Id { get; }
float Ping { get; }
float RoundTrip { get; }
int PingMs { get; }
int RoundTripMs { get; }
}