Files
Fishing2/Assets/Scripts/Fishing2/Map/Handler/Map2C_RoleEnterMapNotifyHandler.cs
2025-09-07 23:50:53 +08:00

14 lines
375 B
C#

using NBC;
using NBC.Network;
using NBC.Network.Interface;
namespace Fishing2.Map
{
public class Map2C_RoleEnterMapNotifyHandler : Message<Map2C_RoleEnterRoomNotify>
{
protected override async FTask Run(Session session, Map2C_RoleEnterRoomNotify message)
{
Log.Info($"收到进入房间推送 id={message.Info.Id} ");
}
}
}