35 lines
794 B
C#
35 lines
794 B
C#
|
using ProtoBuf;
|
|||
|
using Thousandto.Plugins.Common;
|
|||
|
using Thousandto.Code.Center;
|
|||
|
using Thousandto.Cfg.Data;
|
|||
|
using Thousandto.Code.Global;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic.Network
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 实现消息的回调方法
|
|||
|
/// </summary>
|
|||
|
public partial class HandleMsgResult : IHandleMsgResult
|
|||
|
{
|
|||
|
//更新时装
|
|||
|
public void GS2U_ResUpdateFashion( MSG_Fashion.ResUpdateFashion result )
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
//广播切换时装身体
|
|||
|
public void GS2U_ResFashionBodyBroadcast(MSG_Fashion.ResFashionBodyBroadcast result)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void GS2U_ResFashionsInfo(MSG_Fashion.ResFashionsInfo result)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void GS2U_ResHairColor(MSG_Fashion.ResHairColor result)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|