20 lines
698 B
C#
20 lines
698 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResOpenWonderPanel(MSG_Wonder.ResOpenWonderPanel result);
|
||
|
void GS2U_ResUseItemResult(MSG_Wonder.ResUseItemResult result);
|
||
|
void GS2U_ResWingInfo(MSG_Wonder.ResWingInfo result);
|
||
|
void GS2U_ResUseAttrFruitResult(MSG_Wonder.ResUseAttrFruitResult result);
|
||
|
void GS2U_ResEquipSealChangeSync(MSG_Wonder.ResEquipSealChangeSync result);
|
||
|
void GS2U_ResActiveModelResult(MSG_Wonder.ResActiveModelResult result);
|
||
|
|
||
|
}
|
||
|
}
|