mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
25 lines
596 B
C#
25 lines
596 B
C#
using nksrv.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Antibot
|
|
{
|
|
[PacketPath("/antibot/recvdata")]
|
|
public class RecieveAntibotData : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = ReadData<ReqAntibotRecvData>();
|
|
|
|
// I don't really care about reimplementing the server side anticheat, so return
|
|
|
|
var response = new ResAntibotRecvData();
|
|
|
|
WriteData(response);
|
|
}
|
|
}
|
|
}
|