mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 08:24:52 +01:00
lobby ui works
This commit is contained in:
22
nksrv/LobbyServer/Msgs/Arena/GetArenaBanInfo.cs
Normal file
22
nksrv/LobbyServer/Msgs/Arena/GetArenaBanInfo.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.Arena
|
||||
{
|
||||
[PacketPath("/arena/getbaninfo")]
|
||||
public class GetArenaBanInfo : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqGetArenaBanInfo>();
|
||||
|
||||
var response = new ResGetArenaBanInfo();
|
||||
// TODO
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user