Files
Main/Assets/Code/Logic/_NetMessage/Handlers/IHandleMsgResult_MSG_Soul.cs

17 lines
448 B
C#
Raw Permalink Normal View History

2025-01-25 04:38:09 +08:00
using ProtoBuf;
using Thousandto.Plugins.Common;
namespace Thousandto.Code.Logic.Network
{
/// <summary>
/// 定义消息的回调方法,便于实现
/// </summary>
public partial interface IHandleMsgResult
{
void GS2U_ResUpdateSoul(MSG_Soul.ResUpdateSoul result);
void GS2U_ResUpdateHunterLevel(MSG_Soul.ResUpdateHunterLevel result);
void GS2U_ResDeleteSoul(MSG_Soul.ResDeleteSoul result);
}
}