34 lines
1021 B
C#
34 lines
1021 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_ResGetUpdateRewardResult( MSG_UpdateReward.ResGetUpdateRewardResult result )
|
|||
|
{
|
|||
|
//GameCenter.UpdateGiftSystem.GS2U_ResGetUpdateRewardResult(result);
|
|||
|
}
|
|||
|
public void GS2U_ResUpdateReward( MSG_UpdateReward.ResUpdateReward result )
|
|||
|
{
|
|||
|
//GameCenter.UpdateGiftSystem.GS2U_ResUpdateReward(result);
|
|||
|
}
|
|||
|
|
|||
|
public void GS2U_ResGetCommentReward(MSG_UpdateReward.ResGetCommentReward result)
|
|||
|
{
|
|||
|
//GameCenter.UpdateGiftSystem.GS2U_ResGetCommentReward(result);
|
|||
|
}
|
|||
|
|
|||
|
public void GS2U_SyncCommentReward(MSG_UpdateReward.SyncCommentReward result)
|
|||
|
{
|
|||
|
//GameCenter.UpdateGiftSystem.GS2U_SyncCommentReward(result);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|