mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-12 06:54:34 +01:00
remove duplicate GetClearedMissions
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user