misc fixes

This commit is contained in:
Mikhail Thompson
2024-06-28 19:44:26 +03:00
parent 28f6473bb9
commit c7250cdf24
7 changed files with 133 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
using nksrv.Utils;
namespace nksrv.LobbyServer.Msgs.Messenger
{
[PacketPath("/messenger/proceed")]
public class ProceedMsg : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = ReadData<ReqProceedMessage>();
// TODO: save these things
var response = new ResProceedMessage();
WriteData(response);
}
}
}