mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-04 05:48:29 +08:00
10 lines
188 B
C#
10 lines
188 B
C#
![]() |
using Mhf.Server.Model;
|
|||
|
|
|||
|
namespace Mhf.Server.Packet
|
|||
|
{
|
|||
|
public interface IConnectionHandler : IHandler
|
|||
|
{
|
|||
|
void Handle(MhfConnection connection, MhfPacket packet);
|
|||
|
}
|
|||
|
}
|