Files
EpinelPS/EpinelPS/LobbyServer/Msgs/Antibot/RecieveAntibotData.cs
2024-07-30 13:04:25 -04:00

20 lines
503 B
C#

using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Antibot
{
[PacketPath("/antibot/recvdata")]
public class RecieveAntibotData : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqAntibotRecvData>();
// I don't really care about reimplementing the server side anticheat, so return
var response = new ResAntibotRecvData();
await WriteDataAsync(response);
}
}
}