feat: added networking system
This commit is contained in:
12
Engine.Systems/Network/Abstract/IConnection.cs
Normal file
12
Engine.Systems/Network/Abstract/IConnection.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user