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

18 lines
500 B
C#
Raw 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_ResSyncPrayInfo(MSG_Pray.ResSyncPrayInfo result);
void GS2U_ResPraySuccess(MSG_Pray.ResPraySuccess result);
void GS2U_ResPrayFailed(MSG_Pray.ResPrayFailed result);
void GS2U_ResPrayTick(MSG_Pray.ResPrayTick result);
}
}