mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
allow completion of 0-1 stage
This commit is contained in:
19
nksrv/LobbyServer/Msgs/Subquest/ListSubquests.cs
Normal file
19
nksrv/LobbyServer/Msgs/Subquest/ListSubquests.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user