mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 08:24:52 +01:00
basic reward system working
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user