mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
14 lines
321 B
C#
14 lines
321 B
C#
using Mhf.Server.Model;
|
|
|
|
namespace Mhf.Server.Packet
|
|
{
|
|
public abstract class ConnectionHandler : Handler, IConnectionHandler
|
|
{
|
|
protected ConnectionHandler(MhfServer server) : base(server)
|
|
{
|
|
}
|
|
|
|
public abstract void Handle(MhfConnection client, MhfPacket packet);
|
|
}
|
|
}
|