mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
18 lines
381 B
C#
18 lines
381 B
C#
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);
|
|
}
|
|
}
|
|
}
|