33 lines
1.6 KiB
C#
33 lines
1.6 KiB
C#
|
using ProtoBuf;
|
|||
|
using Thousandto.Plugins.Common;
|
|||
|
using Thousandto.Code.Center;
|
|||
|
using MSG_Welfare;
|
|||
|
using Thousandto.Cfg.Data;
|
|||
|
using Thousandto.Code.Global;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic.Network
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 实现消息的回调方法
|
|||
|
/// </summary>
|
|||
|
public partial class HandleMsgResult : IHandleMsgResult
|
|||
|
{
|
|||
|
public void GS2U_ResLoginGiftData(MSG_Welfare.ResLoginGiftData result) { }
|
|||
|
public void GS2U_ResDayCheckInData(MSG_Welfare.ResDayCheckInData result) { }
|
|||
|
public void GS2U_ResExclusiveCardData(MSG_Welfare.ResExclusiveCardData result) { }
|
|||
|
public void GS2U_ResFeelingExpData(MSG_Welfare.ResFeelingExpData result) { }
|
|||
|
public void GS2U_ResGrowthFundData(MSG_Welfare.ResGrowthFundData result) { }
|
|||
|
public void GS2U_ResDayGiftData(MSG_Welfare.ResDayGiftData result) { }
|
|||
|
public void GS2U_ResWelfareReward(MSG_Welfare.ResWelfareReward result) { }
|
|||
|
public void GS2U_ResExchangeGift(MSG_Welfare.ResExchangeGift result) { }
|
|||
|
public void GS2U_ResWelfareLevelGiftData(MSG_Welfare.ResWelfareLevelGiftData result) { }
|
|||
|
public void GS2U_SyncRetrieveResList(MSG_Welfare.SyncRetrieveResList result) { }
|
|||
|
public void GS2U_SyncRetrieveResOne(MSG_Welfare.SyncRetrieveResOne result) { }
|
|||
|
public void GS2U_ResUpdateNoticData(MSG_Welfare.ResUpdateNoticData result) { }
|
|||
|
public void GS2U_ResGetUpdateNoticeAwardRet(MSG_Welfare.ResGetUpdateNoticeAwardRet result) { }
|
|||
|
public void GS2U_ResInvestPeakData(MSG_Welfare.ResInvestPeakData result) { }
|
|||
|
public void GS2U_ResWelfareFreeGiftInfo(MSG_Welfare.ResWelfareFreeGiftInfo result) { }
|
|||
|
}
|
|||
|
}
|