18 lines
532 B
C#
18 lines
532 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResActivityList(MSG_Activity.ResActivityList result);
|
||
|
void GS2U_ResActivityChange(MSG_Activity.ResActivityChange result);
|
||
|
void GS2U_ResActivityDeal(MSG_Activity.ResActivityDeal result);
|
||
|
void GS2U_ResTagInfoList(MSG_Activity.ResTagInfoList result);
|
||
|
|
||
|
}
|
||
|
}
|