18 lines
518 B
C#
18 lines
518 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
/// <summary>
|
|
/// 定义消息的回调方法,便于实现
|
|
/// </summary>
|
|
public partial interface IHandleMsgResult
|
|
{
|
|
void GS2U_ResReadMail(MSG_Mail.ResReadMail result);
|
|
void GS2U_ResReceiveSingleMailAttach(MSG_Mail.ResReceiveSingleMailAttach result);
|
|
void GS2U_ResMailInfoList(MSG_Mail.ResMailInfoList result);
|
|
void GS2U_ResNewMail(MSG_Mail.ResNewMail result);
|
|
|
|
}
|
|
}
|