remove duplicate GetClearedMissions

This commit is contained in:
Mikhail Tyukin
2025-12-10 14:50:37 -05:00
parent 55e5cdcdb8
commit 5f27e2ea44

View File

@@ -1,20 +0,0 @@
using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Event
{
[PacketPath("/event/mission/getclear")]
public class GetClearedMissions : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
ReqGetEventMissionClear req = await ReadData<ReqGetEventMissionClear>(); //has EventIdList
ResGetEventMissionClear response = new();
// response.ResGetEventMissionClear.Add(new NetEventMissionClearData(EventId = 0, EventMissionId = 0 , CreatedAt = 0));
// TODO
await WriteDataAsync(response);
}
}
}