28 lines
786 B
C#
28 lines
786 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_ResDailyRechargeCfg( MSG_Commercialize.ResDailyRechargeCfg result )
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public void GS2U_SyncDailyRechargeInfo( MSG_Commercialize.SyncDailyRechargeInfo result )
|
||
|
{
|
||
|
|
||
|
}
|
||
|
public void GS2U_ResFCChargeData( MSG_Commercialize.ResFCChargeData result ){}
|
||
|
|
||
|
public void GS2U_ResDailyRechargeInfo(MSG_Commercialize.ResDailyRechargeInfo result) {}
|
||
|
public void GS2U_ResGetBoxRewardResult(MSG_Commercialize.ResGetBoxRewardResult result) { }
|
||
|
}
|
||
|
}
|