Files
Ragon/Ragon.Server/INetworkConnection.cs
T
2022-12-16 00:05:46 +04:00

8 lines
200 B
C#

namespace Ragon.Server;
public interface INetworkConnection
{
public ushort Id { get; }
public INetworkChannel ReliableChannel { get; }
public INetworkChannel UnreliableChannel { get; }
}