mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 07:44:00 +00:00
14 lines
512 B
C#
14 lines
512 B
C#
using MikuSB.GameServer.Game.BossPvp;
|
|
|
|
namespace MikuSB.GameServer.Server.CallGS.Handlers.BossPvp;
|
|
|
|
[CallGSApi("BossPvpLogic_LevelMopup")]
|
|
public class BossPvpLogic_LevelMopup : ICallGSHandler
|
|
{
|
|
public async Task Handle(Connection connection, string param, ushort seqNo)
|
|
{
|
|
var (response, sync) = BossPvpService.HandleMopup(connection.Player!, param);
|
|
await CallGSRouter.SendScript(connection, "BossPvpLogic_LevelMopup", System.Text.Json.JsonSerializer.Serialize(response), sync);
|
|
}
|
|
}
|