Files
Ragon/Ragon.Server/INetworkConnection.cs
T

8 lines
186 B
C#
Raw Permalink Normal View History

2022-12-16 00:05:46 +04:00
namespace Ragon.Server;
public interface INetworkConnection
{
public ushort Id { get; }
2022-12-20 12:20:52 -08:00
public INetworkChannel Reliable { get; }
public INetworkChannel Unreliable { get; }
2022-12-16 00:05:46 +04:00
}