24 lines
672 B
C#
24 lines
672 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
using Thousandto.Code.Center;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
|
|
/// <summary>
|
|
/// 实现消息的回调方法
|
|
/// </summary>
|
|
public partial class HandleMsgResult : IHandleMsgResult
|
|
{
|
|
public void GS2U_ResDailyRechargeRewardInfo( MSG_Stronger.ResDailyRechargeRewardInfo result )
|
|
{
|
|
//GameCenter.BeStrongSystem.GS2U_ResDailyRechargeRewardInfo( result );
|
|
}
|
|
public void GS2U_ResDailyRechargeReward( MSG_Stronger.ResDailyRechargeReward result )
|
|
{
|
|
//GameCenter.BeStrongSystem.GS2U_ResDailyRechargeReward( result );
|
|
}
|
|
|
|
}
|
|
}
|