Files
EpinelPS/nksrv/LobbyServer/Msgs/User/GetWallpaperInventory.cs
Mikhail 40f78db301 implement GetWallpaperInventory
lobby settings work now
2024-07-03 20:50:12 -04:00

23 lines
516 B
C#

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);
}
}
}