mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
21 lines
514 B
C#
21 lines
514 B
C#
using nksrv.Net;
|
|
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Antibot
|
|
{
|
|
[PacketPath("/antibot/recvdata")]
|
|
public class RecieveAntibotData : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqAntibotRecvData>();
|
|
|
|
// I don't really care about reimplementing the server side anticheat, so return
|
|
|
|
var response = new ResAntibotRecvData();
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|