mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-21 03:14:59 +01:00
Remove msg folder
This commit is contained in:
19
EpinelPS/LobbyServer/Episode/ListMission.cs
Normal file
19
EpinelPS/LobbyServer/Episode/ListMission.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using EpinelPS.Utils;
|
||||
|
||||
namespace EpinelPS.LobbyServer.Episode
|
||||
{
|
||||
[PacketPath("/episode/mission/enter")]
|
||||
public class ListMission : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqListValidEpMission>();
|
||||
|
||||
var response = new ResListValidEpMission();
|
||||
|
||||
// TOOD
|
||||
|
||||
await WriteDataAsync(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user