RUDPClient/Assets/Scripts/Network/NetworkTransport/IPeerSessionTransport.cs

10 lines
172 B
C#

using System.Net;
namespace Network.NetworkTransport
{
public interface IPeerSessionTransport
{
bool RemovePeerSession(IPEndPoint remoteEndPoint);
}
}