18 lines
538 B
C#
18 lines
538 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResUpdateFashion(MSG_Fashion.ResUpdateFashion result);
|
||
|
void GS2U_ResFashionsInfo(MSG_Fashion.ResFashionsInfo result);
|
||
|
void GS2U_ResFashionBodyBroadcast(MSG_Fashion.ResFashionBodyBroadcast result);
|
||
|
void GS2U_ResHairColor(MSG_Fashion.ResHairColor result);
|
||
|
|
||
|
}
|
||
|
}
|