17 lines
485 B
C#
17 lines
485 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
/// <summary>
|
|
/// 定义消息的回调方法,便于实现
|
|
/// </summary>
|
|
public partial interface IHandleMsgResult
|
|
{
|
|
void GS2U_ResAchievementInfo(MSG_Achievement.ResAchievementInfo result);
|
|
void GS2U_ResUpdateAchivement(MSG_Achievement.ResUpdateAchivement result);
|
|
void GS2U_ResGetAchievement(MSG_Achievement.ResGetAchievement result);
|
|
|
|
}
|
|
}
|