mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
18 lines
428 B
C#
18 lines
428 B
C#
using EpinelPS.Utils;
|
|
|
|
namespace EpinelPS.LobbyServer.Intercept
|
|
{
|
|
[PacketPath("/intercept/Anomalous/Finish")]
|
|
public class FinishAnomalousIntercept : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqFinishInterceptAnomalous>();
|
|
|
|
var response = new ResFinishInterceptAnomalous();
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|