Update to game version 123.8.11

This commit is contained in:
Mikhail
2024-07-25 08:54:10 -04:00
parent 49df23798f
commit 643d3a5c7c
4 changed files with 50 additions and 17 deletions

View File

@@ -0,0 +1,22 @@
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.User
{
[PacketPath("/user/speciallobbyslot/get")]
public class GetSpecialLobbySlotData : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqGetSpecialLobbySlotData>();
var response = new ResGetSpecialLobbySlotData();
// TODO
await WriteDataAsync(response);
}
}
}