You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
375 B
18 lines
375 B
/*
|
|
Sog 游戏基础库
|
|
2016 by zouwei
|
|
*/
|
|
|
|
using Sog;
|
|
|
|
namespace Chat
|
|
{
|
|
public interface IPacketHandler
|
|
{
|
|
//处理客户端消息,通过gate转过来的
|
|
void HandlerClientPacket(PlayerOnChat player, StructPacket packet);
|
|
|
|
//处理其他服务器发过来的消息
|
|
void HandlerServerPacket(uint serverID, StructPacket packet);
|
|
}
|
|
}
|
|
|