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(); // I don't really care about reimplementing the server side anticheat, so return var response = new ResAntibotRecvData(); WriteData(response); } } }