implement more things

This commit is contained in:
Mikhail Thompson
2024-06-27 16:38:42 +03:00
parent 16cece6560
commit 4ffb238c6e
10 changed files with 272 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
using nksrv.Utils;
namespace nksrv.LobbyServer.Msgs.Outpost
{
[PacketPath("/outpost/memorial/getmemorylist")]
public class MemorialGetMemoryList : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqGetMemoryList>();
var response = new ResGetMemoryList();
// TODO
WriteData(response);
}
}
}