17 lines
435 B
C#
17 lines
435 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResHeart(MSG_heart.ResHeart result);
|
||
|
void GS2U_ResReconnectSign(MSG_heart.ResReconnectSign result);
|
||
|
void GS2U_ResHeartFailed(MSG_heart.ResHeartFailed result);
|
||
|
|
||
|
}
|
||
|
}
|