mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 17:04:44 +01:00
26 lines
630 B
C#
26 lines
630 B
C#
using EpinelPS.Net;
|
|
using EpinelPS.Utils;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EpinelPS.LobbyServer.Msgs.Intercept
|
|
{
|
|
[PacketPath("/intercept/fastclear")]
|
|
public class FastClearInterceptData : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqFastClearIntercept>();
|
|
|
|
var response = new ResFastClearIntercept
|
|
{
|
|
Intercept = 1,
|
|
InterceptId = 1,
|
|
TicketCount = 3,
|
|
MaxTicketCount = 10
|
|
};
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|