basic reward system working

This commit is contained in:
Mikhail Thompson
2024-06-28 13:48:43 +03:00
parent 91a6ee3b3d
commit 28f6473bb9
9 changed files with 148 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
using nksrv.Utils;
namespace nksrv.LobbyServer.Msgs.PartyMatch
{
[PacketPath("/partymatch/listinvitation")]
public class ListPartyMatchInvitations : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqListInvitation>();
var user = GetUser();
var response = new ResListInvitation();
// TODO
WriteData(response);
}
}
}