17 lines
521 B
C#
17 lines
521 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
/// <summary>
|
|
/// 定义消息的回调方法,便于实现
|
|
/// </summary>
|
|
public partial interface IHandleMsgResult
|
|
{
|
|
void GS2U_F2GSendBravePeakReward(MSG_BravePeak.F2GSendBravePeakReward result);
|
|
void GS2U_G2PGetPlayerBravePeakInfo(MSG_BravePeak.G2PGetPlayerBravePeakInfo result);
|
|
void GS2U_P2GPlayerBravePeakInfoResult(MSG_BravePeak.P2GPlayerBravePeakInfoResult result);
|
|
|
|
}
|
|
}
|