Files
Main/Assets/Code/Logic/_NetMessage/Handlers/HandleMsgResult_MSG_Stronger.cs
2025-01-25 04:38:09 +08:00

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 );
}
}
}