mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 08:54:47 +01:00
implement a few more messages
This commit is contained in:
17
nksrv/LobbyServer/Msgs/Misc/EnterLobbyPing.cs
Normal file
17
nksrv/LobbyServer/Msgs/Misc/EnterLobbyPing.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using nksrv.Utils;
|
||||
|
||||
namespace nksrv.LobbyServer.Msgs.Misc
|
||||
{
|
||||
[PacketPath("/enterlobbyping")]
|
||||
public class EnterLobbyPing : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqEnterLobbyPing>();
|
||||
|
||||
var response = new ResEnterLobbyPing();
|
||||
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user