Files
JJBB/Assets/Project/Script/GameLogic/NetWork/PacketHandler/GCCommonStreamHandler.cs
2024-08-23 15:49:34 +08:00

33 lines
803 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/********************************************************************************
* 文件名GCCommonStreamHandler.cs
* 全路径: \NetWork\PacketHandler\GCCommonStreamHandler.cs
* 创建人: 王华
* 创建时间2013-11-29
*
* 功能说明: Server返回给客户端的公共包的处理
*
* 修改记录:
*********************************************************************************/
using System;
using System.Collections.Generic;
using Google.ProtocolBuffers;
namespace SPacket.SocketInstance
{
//Server回包
public class GCLoginRet : PacketFactory
{
public MessageID GetPacketID()
{
return MessageID.PACKET_GC_LOGIN_RET;
}
public Ipacket CreatePacket()
{
return new GCLoginRetHandler();
}
}
}