19 lines
669 B
C#
19 lines
669 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResDailyRechargeCfg(MSG_Commercialize.ResDailyRechargeCfg result);
|
||
|
void GS2U_SyncDailyRechargeInfo(MSG_Commercialize.SyncDailyRechargeInfo result);
|
||
|
void GS2U_ResFCChargeData(MSG_Commercialize.ResFCChargeData result);
|
||
|
void GS2U_ResDailyRechargeInfo(MSG_Commercialize.ResDailyRechargeInfo result);
|
||
|
void GS2U_ResGetBoxRewardResult(MSG_Commercialize.ResGetBoxRewardResult result);
|
||
|
|
||
|
}
|
||
|
}
|