allow completion of 0-1 stage

This commit is contained in:
Mikhail Thompson
2024-06-26 19:27:01 +03:00
parent 838240de58
commit ce0b5bf040
10 changed files with 77 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
using nksrv.Utils;
namespace nksrv.LobbyServer.Msgs.Subquest
{
[PacketPath("/subquest/list")]
public class ListSubquests : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqGetSubQuestList>();
var response = new ResGetSubQuestList();
// TOOD
WriteData(response);
}
}
}