18 lines
498 B
C#
18 lines
498 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResNpcFuncInfos(MSG_Npc.ResNpcFuncInfos result);
|
||
|
void GS2U_ResStartGather(MSG_Npc.ResStartGather result);
|
||
|
void GS2U_ResStopGather(MSG_Npc.ResStopGather result);
|
||
|
void GS2U_ResNpcAction(MSG_Npc.ResNpcAction result);
|
||
|
|
||
|
}
|
||
|
}
|