Remove msg folder

This commit is contained in:
Mikhail
2024-12-21 09:50:05 -05:00
parent 3b05037be5
commit b7a655c169
204 changed files with 209 additions and 209 deletions

View 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);
}
}
}