RUDPClient/Assets/Scripts/Network/NetworkApplication/IMessageHandler.cs

10 lines
199 B
C#

using System.Net;
using System.Threading.Tasks;
namespace Network.NetworkApplication
{
public interface IMessageHandler
{
Task HandleAsync(byte[] message, IPEndPoint sender);
}
}