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