24 lines
918 B
C#
24 lines
918 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
/// <summary>
|
|
/// 定义消息的回调方法,便于实现
|
|
/// </summary>
|
|
public partial interface IHandleMsgResult
|
|
{
|
|
void GS2U_ResVipRed(MSG_Vip.ResVipRed result);
|
|
void GS2U_ResVip(MSG_Vip.ResVip result);
|
|
void GS2U_ResVipReward(MSG_Vip.ResVipReward result);
|
|
void GS2U_ResVipPurGift(MSG_Vip.ResVipPurGift result);
|
|
void GS2U_ResVipExpChange(MSG_Vip.ResVipExpChange result);
|
|
void GS2U_ResVipRechageMoney(MSG_Vip.ResVipRechageMoney result);
|
|
void GS2U_ResVipRechageRewardList(MSG_Vip.ResVipRechageRewardList result);
|
|
void GS2U_ResVipRechargeReward(MSG_Vip.ResVipRechargeReward result);
|
|
void GS2U_ResSpecialVipStateInfo(MSG_Vip.ResSpecialVipStateInfo result);
|
|
void GS2U_ResVipPearlInfo(MSG_Vip.ResVipPearlInfo result);
|
|
|
|
}
|
|
}
|