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

25 lines
604 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/battlereportdata")]
public class BattleReportData : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = ReadData<ReqBattleReportData>();
// I don't really care about reimplementing the server side anticheat, so return
var response = new ResBattleReportData();
WriteData(response);
}
}
}