mhf-server/Mhf.Server/Packet/IConnectionHandler.cs
2019-11-24 19:43:35 +08:00

10 lines
188 B
C#

using Mhf.Server.Model;
namespace Mhf.Server.Packet
{
public interface IConnectionHandler : IHandler
{
void Handle(MhfConnection connection, MhfPacket packet);
}
}