20 lines
808 B
C#
20 lines
808 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 实现消息的回调方法
|
||
|
/// </summary>
|
||
|
public partial class HandleMsgResult : IHandleMsgResult
|
||
|
{
|
||
|
public void GS2U_ResOnlineInitFashionInfo( MSG_NewFashion.ResOnlineInitFashionInfo result ){}
|
||
|
public void GS2U_ResSaveFashionResult( MSG_NewFashion.ResSaveFashionResult result ){}
|
||
|
public void GS2U_ResNewFashionBodyBroadcast( MSG_NewFashion.ResNewFashionBodyBroadcast result ){}
|
||
|
public void GS2U_ResFashionStarResult(MSG_NewFashion.ResFashionStarResult result) { }
|
||
|
public void GS2U_ResActiveTjResult(MSG_NewFashion.ResActiveTjResult result) { }
|
||
|
public void GS2U_ResTjStarResult(MSG_NewFashion.ResTjStarResult result) { }
|
||
|
}
|
||
|
}
|