Files
EpinelPS/nksrv/LobbyServer/Msgs/Antibot/RecieveAntibotData.cs
Mikhail Thompson 838240de58 Initial commit
2024-06-26 19:03:44 +03:00

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);
}
}
}