Files
Ragon/Ragon.Server/INetworkConnection.cs
T

8 lines
200 B
C#
Raw Normal View History

2022-12-16 00:05:46 +04:00
namespace Ragon.Server;
public interface INetworkConnection
{
public ushort Id { get; }
public INetworkChannel ReliableChannel { get; }
public INetworkChannel UnreliableChannel { get; }
}