mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
Update to game version 123.8.11
This commit is contained in:
22
nksrv/LobbyServer/Msgs/User/GetSpecialLobbySlotData.cs
Normal file
22
nksrv/LobbyServer/Msgs/User/GetSpecialLobbySlotData.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user