mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-17 09:24:37 +01:00
20 lines
443 B
C#
20 lines
443 B
C#
using EpinelPS.Utils;
|
|
|
|
namespace EpinelPS.LobbyServer.Episode
|
|
{
|
|
[PacketPath("/episode/mission/enter")]
|
|
public class ListMission : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
ReqListValidEpMission req = await ReadData<ReqListValidEpMission>();
|
|
|
|
ResListValidEpMission response = new();
|
|
|
|
// TOOD
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|