mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-04 22:28:26 +08:00
10 lines
176 B
C#
10 lines
176 B
C#
![]() |
using Mhf.Server.Model;
|
|||
|
|
|||
|
namespace Mhf.Server.Packet
|
|||
|
{
|
|||
|
public interface IClientHandler : IHandler
|
|||
|
{
|
|||
|
void Handle(MhfClient client, MhfPacket packet);
|
|||
|
}
|
|||
|
}
|