21 lines
758 B
C#
21 lines
758 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResNatureInfo(MSG_Nature.ResNatureInfo result);
|
||
|
void GS2U_ResNatureUpLevel(MSG_Nature.ResNatureUpLevel result);
|
||
|
void GS2U_ResNatureDrug(MSG_Nature.ResNatureDrug result);
|
||
|
void GS2U_ResNatureModelSet(MSG_Nature.ResNatureModelSet result);
|
||
|
void GS2U_ResNatureFashionUpLevel(MSG_Nature.ResNatureFashionUpLevel result);
|
||
|
void GS2U_ResNatureModelIdChange(MSG_Nature.ResNatureModelIdChange result);
|
||
|
void GS2U_ResPowerChange(MSG_Nature.ResPowerChange result);
|
||
|
|
||
|
}
|
||
|
}
|