implement GetWallpaperInventory

lobby settings work now
This commit is contained in:
Mikhail
2024-07-03 20:50:12 -04:00
parent 9c78dc525b
commit 40f78db301
2 changed files with 80 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.User
{
[PacketPath("/user/getwallpaperinventory")]
public class GetWallpaperInventory : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqGetWallpaperInventory>();
var r = new ResGetWallpaperInventory();
WriteData(r);
}
}
}