18 lines
550 B
C#
18 lines
550 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
|
|
/// <summary>
|
|
/// 实现消息的回调方法
|
|
/// </summary>
|
|
public partial class HandleMsgResult : IHandleMsgResult
|
|
{
|
|
public void GS2U_F2GSendBravePeakReward( MSG_BravePeak.F2GSendBravePeakReward result ){}
|
|
public void GS2U_G2PGetPlayerBravePeakInfo( MSG_BravePeak.G2PGetPlayerBravePeakInfo result ){}
|
|
public void GS2U_P2GPlayerBravePeakInfoResult( MSG_BravePeak.P2GPlayerBravePeakInfoResult result ){}
|
|
|
|
}
|
|
}
|