20 lines
740 B
C#
20 lines
740 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResOpenCangbaogePanel(MSG_Cangbaoge.ResOpenCangbaogePanel result);
|
||
|
void GS2U_ResOpenRecordPanel(MSG_Cangbaoge.ResOpenRecordPanel result);
|
||
|
void GS2U_ResCangbaogeLottery(MSG_Cangbaoge.ResCangbaogeLottery result);
|
||
|
void GS2U_ResCangbaogeReward(MSG_Cangbaoge.ResCangbaogeReward result);
|
||
|
void GS2U_ResOpenCangbaogeExchange(MSG_Cangbaoge.ResOpenCangbaogeExchange result);
|
||
|
void GS2U_ResCangbaogeExchange(MSG_Cangbaoge.ResCangbaogeExchange result);
|
||
|
|
||
|
}
|
||
|
}
|