mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 07:24:52 +01:00
24 lines
577 B
C#
24 lines
577 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 = await ReadData<ReqBattleReportData>();
|
|
var response = new ResBattleReportData();
|
|
|
|
// this is responsible for server side anticheat
|
|
|
|
WriteData(response);
|
|
}
|
|
}
|
|
}
|