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.
19 lines
375 B
19 lines
375 B
1 month ago
|
/*
|
||
|
Sog 游戏基础库
|
||
|
2016 by zouwei
|
||
|
*/
|
||
|
|
||
|
using Sog;
|
||
|
|
||
|
namespace Chat
|
||
|
{
|
||
|
public interface IPacketHandler
|
||
|
{
|
||
|
//处理客户端消息,通过gate转过来的
|
||
|
void HandlerClientPacket(PlayerOnChat player, StructPacket packet);
|
||
|
|
||
|
//处理其他服务器发过来的消息
|
||
|
void HandlerServerPacket(uint serverID, StructPacket packet);
|
||
|
}
|
||
|
}
|