Files
Main/Assets/Code/Logic/_NetMessage/Handlers/HandleMsgResult_MSG_UpdateReward.cs

34 lines
1021 B
C#
Raw Permalink Normal View History

2025-01-25 04:38:09 +08:00
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);
}
}
}