mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 20:33:57 +00:00
Implement BossPvP logic (I implemented this based on undownding's code. Thank you!)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace MikuSB.GameServer.Server.CallGS.Handlers.BossPvp;
|
||||
|
||||
[CallGSApi("BossPvpLogic_GetOpenID")]
|
||||
public class BossPvpLogic_GetOpenID : ICallGSHandler
|
||||
{
|
||||
public async Task Handle(Connection connection, string param, ushort seqNo)
|
||||
{
|
||||
var (response, sync) = await BossPvpShared.HandleGetOpenIdAsync(connection);
|
||||
await CallGSRouter.SendScript(connection, "BossPvpLogic_GetOpenID", System.Text.Json.JsonSerializer.Serialize(response), sync);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user