19 lines
583 B
C#
19 lines
583 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
/// <summary>
|
|
/// 定义消息的回调方法,便于实现
|
|
/// </summary>
|
|
public partial interface IHandleMsgResult
|
|
{
|
|
void GS2U_ResTitleInfo(MSG_Title.ResTitleInfo result);
|
|
void GS2U_ResActiveTitleResult(MSG_Title.ResActiveTitleResult result);
|
|
void GS2U_ResWearTitle(MSG_Title.ResWearTitle result);
|
|
void GS2U_ResDownTitle(MSG_Title.ResDownTitle result);
|
|
void GS2U_ResBroadWearTitle(MSG_Title.ResBroadWearTitle result);
|
|
|
|
}
|
|
}
|